Package org.opencv.features2d
Class Features2d
java.lang.Object
org.opencv.features2d.Features2d
public class Features2d extends Object
-
Field Summary
Fields Modifier and Type Field Description static intDRAW_OVER_OUTIMGstatic intDRAW_RICH_KEYPOINTSstatic intNOT_DRAW_SINGLE_POINTS -
Constructor Summary
Constructors Constructor Description Features2d() -
Method Summary
Modifier and Type Method Description static voiddrawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage)static voiddrawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage, Scalar color, int flags)static voiddrawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg)static voiddrawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags)static voiddrawMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg)static voiddrawMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask, int flags)static voiddrawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg)static voiddrawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask, int flags)
-
Field Details
-
DRAW_OVER_OUTIMG
public static final int DRAW_OVER_OUTIMG- See Also:
- Constant Field Values
-
NOT_DRAW_SINGLE_POINTS
public static final int NOT_DRAW_SINGLE_POINTS- See Also:
- Constant Field Values
-
DRAW_RICH_KEYPOINTS
public static final int DRAW_RICH_KEYPOINTS- See Also:
- Constant Field Values
-
-
Constructor Details
-
Features2d
public Features2d()
-
-
Method Details
-
drawKeypoints
public static void drawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage, Scalar color, int flags) -
drawKeypoints
-
drawMatches
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags) -
drawMatches
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg) -
drawMatches2
public static void drawMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask, int flags) -
drawMatches2
public static void drawMatches2(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg) -
drawMatchesKnn
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List<MatOfByte> matchesMask, int flags) -
drawMatchesKnn
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List<MatOfDMatch> matches1to2, Mat outImg)
-