use of boofcv.abst.feature.detect.extract.NonMaxLimiter in project BoofCV by lessthanoptimal.
the class TestSiftDetector method createDetector.
private SiftDetector createDetector() {
SiftScaleSpace ss = new SiftScaleSpace(-1, 5, 3, 1.6);
NonMaxSuppression nonmax = FactoryFeatureExtractor.nonmax(new ConfigExtract(1, 0, 1, true, true, true));
NonMaxLimiter limiter = new NonMaxLimiter(nonmax, 1000);
return new SiftDetector(ss, 10, limiter);
}
Aggregations