mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
40 lines
855 B
Java
40 lines
855 B
Java
package org.opencv.test.features2d;
|
|
|
|
import org.opencv.test.OpenCVTestCase;
|
|
|
|
public class DynamicSIMPLEBLOBFeatureDetectorTest extends OpenCVTestCase {
|
|
|
|
public void testCreate() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
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");
|
|
}
|
|
|
|
public void testRead() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
public void testWrite() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
}
|