Move cv::KeyPoint and cv::DMatch to core

This commit is contained in:
Andrey Kamaev
2013-03-26 14:58:09 +04:00
parent 8eff34ee0b
commit 49f6dad13f
37 changed files with 308 additions and 250 deletions

View File

@@ -10,7 +10,7 @@ except:
class_ignore_list = (
#core
"FileNode", "FileStorage", "KDTree",
"FileNode", "FileStorage", "KDTree", "KeyPoint", "DMatch",
#highgui
"VideoWriter", "VideoCapture",
)

View File

@@ -1,4 +1,4 @@
package org.opencv.features2d;
package org.opencv.core;
//C++: class DMatch

View File

@@ -1,4 +1,4 @@
package org.opencv.features2d;
package org.opencv.core;
import org.opencv.core.Point;

View File

@@ -3,7 +3,7 @@ package org.opencv.core;
import java.util.Arrays;
import java.util.List;
import org.opencv.features2d.DMatch;
import org.opencv.core.DMatch;
public class MatOfDMatch extends Mat {
// 32FC4

View File

@@ -3,7 +3,7 @@ package org.opencv.core;
import java.util.Arrays;
import java.util.List;
import org.opencv.features2d.KeyPoint;
import org.opencv.core.KeyPoint;
public class MatOfKeyPoint extends Mat {
// 32FC7

View File

@@ -14,8 +14,8 @@ import org.opencv.core.MatOfPoint3f;
import org.opencv.core.Point;
import org.opencv.core.Point3;
import org.opencv.core.Rect;
import org.opencv.features2d.DMatch;
import org.opencv.features2d.KeyPoint;
import org.opencv.core.DMatch;
import org.opencv.core.KeyPoint;
public class Converters {