use of boofcv.abst.feature.detect.interest.PointDetectorTypes in project BoofCV by lessthanoptimal.
the class TestFactoryDetectPoint method checkBlowUp.
/**
* Go through every detector type and see if any of them blow up
*/
@Test
void checkBlowUp() {
var config = new ConfigPointDetector();
for (PointDetectorTypes type : PointDetectorTypes.values()) {
config.type = type;
FactoryDetectPoint.create(config, GrayU8.class, null);
FactoryDetectPoint.create(config, GrayF32.class, null);
}
}
Aggregations