2012-10-17 15:12:04 +08:00
|
|
|
package org.opencv.test.features2d;
|
|
|
|
|
|
|
|
import org.opencv.test.OpenCVTestCase;
|
2022-12-21 21:03:00 +08:00
|
|
|
import org.opencv.test.OpenCVTestRunner;
|
|
|
|
import org.opencv.features2d.MSER;
|
2012-10-17 15:12:04 +08:00
|
|
|
|
|
|
|
public class MSERFeatureDetectorTest extends OpenCVTestCase {
|
|
|
|
|
2022-12-21 21:03:00 +08:00
|
|
|
MSER detector;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void setUp() throws Exception {
|
|
|
|
super.setUp();
|
|
|
|
detector = MSER.create(); // default constructor have (5, 60, 14400, .25, .2, 200, 1.01, .003, 5)
|
|
|
|
}
|
|
|
|
|
2012-10-17 15:12:04 +08:00
|
|
|
public void testCreate() {
|
2022-12-21 21:03:00 +08:00
|
|
|
assertNotNull(detector);
|
2012-10-17 15:12:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void testDetectListOfMatListOfListOfKeyPoint() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testDetectListOfMatListOfListOfKeyPointListOfMat() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testDetectMatListOfKeyPoint() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testDetectMatListOfKeyPointMat() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
public void testEmpty() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
2022-12-21 21:03:00 +08:00
|
|
|
public void testReadYml() {
|
|
|
|
String filename = OpenCVTestRunner.getTempFileName("yml");
|
|
|
|
|
|
|
|
writeFile(filename, "%YAML:1.0\n---\nname: \"Feature2D.MSER\"\ndelta: 6\nminArea: 62\nmaxArea: 14402\nmaxVariation: .26\nminDiversity: .3\nmaxEvolution: 201\nareaThreshold: 1.02\nminMargin: 3.0e-3\nedgeBlurSize: 3\npass2Only: 1\n");
|
|
|
|
detector.read(filename);
|
|
|
|
|
|
|
|
assertEquals(6, detector.getDelta());
|
|
|
|
assertEquals(62, detector.getMinArea());
|
|
|
|
assertEquals(14402, detector.getMaxArea());
|
|
|
|
assertEquals(.26, detector.getMaxVariation());
|
|
|
|
assertEquals(.3, detector.getMinDiversity());
|
|
|
|
assertEquals(201, detector.getMaxEvolution());
|
|
|
|
assertEquals(1.02, detector.getAreaThreshold());
|
|
|
|
assertEquals(0.003, detector.getMinMargin());
|
|
|
|
assertEquals(3, detector.getEdgeBlurSize());
|
|
|
|
assertEquals(true, detector.getPass2Only());
|
2012-10-17 15:12:04 +08:00
|
|
|
}
|
|
|
|
|
2022-12-21 21:03:00 +08:00
|
|
|
public void testWriteYml() {
|
|
|
|
String filename = OpenCVTestRunner.getTempFileName("yml");
|
|
|
|
|
|
|
|
detector.write(filename);
|
|
|
|
|
|
|
|
String truth = "%YAML:1.0\n---\nname: \"Feature2D.MSER\"\ndelta: 5\nminArea: 60\nmaxArea: 14400\nmaxVariation: 2.5000000000000000e-01\nminDiversity: 2.0000000000000001e-01\nmaxEvolution: 200\nareaThreshold: 1.0100000000000000e+00\nminMargin: 3.0000000000000001e-03\nedgeBlurSize: 5\npass2Only: 0\n";
|
|
|
|
String actual = readFile(filename);
|
|
|
|
actual = actual.replaceAll("e([+-])0(\\d\\d)", "e$1$2"); // NOTE: workaround for different platforms double representation
|
|
|
|
assertEquals(truth, actual);
|
2012-10-17 15:12:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|