use of boofcv.struct.image.GrayS8 in project BoofCV by lessthanoptimal.
the class TestImplEdgeNonMaxSuppression method border4.
@Test
public void border4() {
GrayF32 intensity = new GrayF32(width, height);
GrayS8 direction = new GrayS8(width, height);
GrayF32 expected = new GrayF32(width, height);
GrayF32 found = new GrayF32(width, height);
BoofTesting.checkSubImage(this, "border4", true, intensity, direction, expected, found);
}
Aggregations