Move cv::KeyPoint and cv::DMatch to core
This commit is contained in:
@@ -10,7 +10,7 @@ except:
|
||||
|
||||
class_ignore_list = (
|
||||
#core
|
||||
"FileNode", "FileStorage", "KDTree",
|
||||
"FileNode", "FileStorage", "KDTree", "KeyPoint", "DMatch",
|
||||
#highgui
|
||||
"VideoWriter", "VideoCapture",
|
||||
)
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package org.opencv.features2d;
|
||||
package org.opencv.core;
|
||||
|
||||
//C++: class DMatch
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package org.opencv.features2d;
|
||||
package org.opencv.core;
|
||||
|
||||
import org.opencv.core.Point;
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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 {
|
||||
|
||||
|
Reference in New Issue
Block a user