mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
842 B
40 lines
842 B
12 years ago
|
package org.opencv.test.features2d;
|
||
|
|
||
|
import org.opencv.test.OpenCVTestCase;
|
||
|
|
||
|
public class GFTTFeatureDetectorTest 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");
|
||
|
}
|
||
|
|
||
|
}
|