use of boofcv.abst.feature.detect.interest.WrapSiftDetector in project BoofCV by lessthanoptimal.
the class TestWrapSiftDetector method testAllImageTypes.
@Test
public void testAllImageTypes() {
for (Class type : types) {
SiftDetector detector = FactoryInterestPointAlgs.sift(null, null);
WrapSiftDetector alg = new WrapSiftDetector(detector, type);
new GeneralInterestPointDetectorChecks(alg, false, true, type) {
}.performAllTests();
}
}
Aggregations