Search in sources :

Example 1 with WrapSiftDetector

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();
    }
}
Also used : WrapSiftDetector(boofcv.abst.feature.detect.interest.WrapSiftDetector) SiftDetector(boofcv.alg.feature.detect.interest.SiftDetector) WrapSiftDetector(boofcv.abst.feature.detect.interest.WrapSiftDetector) Test(org.junit.Test)

Aggregations

WrapSiftDetector (boofcv.abst.feature.detect.interest.WrapSiftDetector)1 SiftDetector (boofcv.alg.feature.detect.interest.SiftDetector)1 Test (org.junit.Test)1