Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.features2d;
import java.util.ArrayList;
import java.util.List;
import org.opencv.core.Mat;
import org.opencv.core.MatOfByte;
import org.opencv.core.MatOfDMatch;
import org.opencv.core.MatOfKeyPoint;
import org.opencv.core.Scalar;
import org.opencv.utils.Converters;
// C++: class Features2d
public class Features2d {
// C++: enum DrawMatchesFlags
public static final int
DrawMatchesFlags_DEFAULT = 0,
DrawMatchesFlags_DRAW_OVER_OUTIMG = 1,
DrawMatchesFlags_NOT_DRAW_SINGLE_POINTS = 2,
DrawMatchesFlags_DRAW_RICH_KEYPOINTS = 4;
//
// C++: void cv::drawKeypoints(Mat image, vector_KeyPoint keypoints, Mat& outImage, Scalar color = Scalar::all(-1), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
//
/**
* Draws keypoints.
*
* @param image Source image.
* @param keypoints Keypoints from the source image.
* @param outImage Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param color Color of keypoints.
* @param flags Flags setting drawing features. Possible flags bit values are defined by
* DrawMatchesFlags. See details above in drawMatches .
*
* Note:
* For Python API, flags are modified as cv.DRAW_MATCHES_FLAGS_DEFAULT,
* cv.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS, cv.DRAW_MATCHES_FLAGS_DRAW_OVER_OUTIMG,
* cv.DRAW_MATCHES_FLAGS_NOT_DRAW_SINGLE_POINTS
*/
public static void drawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage, Scalar color, int flags) {
Mat keypoints_mat = keypoints;
drawKeypoints_0(image.nativeObj, keypoints_mat.nativeObj, outImage.nativeObj, color.val[0], color.val[1], color.val[2], color.val[3], flags);
}
/**
* Draws keypoints.
*
* @param image Source image.
* @param keypoints Keypoints from the source image.
* @param outImage Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param color Color of keypoints.
* DrawMatchesFlags. See details above in drawMatches .
*
* Note:
* For Python API, flags are modified as cv.DRAW_MATCHES_FLAGS_DEFAULT,
* cv.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS, cv.DRAW_MATCHES_FLAGS_DRAW_OVER_OUTIMG,
* cv.DRAW_MATCHES_FLAGS_NOT_DRAW_SINGLE_POINTS
*/
public static void drawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage, Scalar color) {
Mat keypoints_mat = keypoints;
drawKeypoints_1(image.nativeObj, keypoints_mat.nativeObj, outImage.nativeObj, color.val[0], color.val[1], color.val[2], color.val[3]);
}
/**
* Draws keypoints.
*
* @param image Source image.
* @param keypoints Keypoints from the source image.
* @param outImage Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* DrawMatchesFlags. See details above in drawMatches .
*
* Note:
* For Python API, flags are modified as cv.DRAW_MATCHES_FLAGS_DEFAULT,
* cv.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS, cv.DRAW_MATCHES_FLAGS_DRAW_OVER_OUTIMG,
* cv.DRAW_MATCHES_FLAGS_NOT_DRAW_SINGLE_POINTS
*/
public static void drawKeypoints(Mat image, MatOfKeyPoint keypoints, Mat outImage) {
Mat keypoints_mat = keypoints;
drawKeypoints_2(image.nativeObj, keypoints_mat.nativeObj, outImage.nativeObj);
}
//
// C++: void cv::drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_DMatch matches1to2, Mat& outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_char matchesMask = std::vector(), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
//
/**
* Draws the found matches of keypoints from two images.
*
* @param img1 First source image.
* @param keypoints1 Keypoints from the first source image.
* @param img2 Second source image.
* @param keypoints2 Keypoints from the second source image.
* @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
* has a corresponding point in keypoints2[matches[i]] .
* @param outImg Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param matchColor Color of matches (lines and connected keypoints). If matchColor==Scalar::all(-1)
* , the color is generated randomly.
* @param singlePointColor Color of single keypoints (circles), which means that keypoints do not
* have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
* @param matchesMask Mask determining which matches are drawn. If the mask is empty, all matches are
* drawn.
* @param flags Flags setting drawing features. Possible flags bit values are defined by
* DrawMatchesFlags.
*
* This function draws matches of keypoints from two images in the output image. Match is a line
* connecting two keypoints (circles). See cv::DrawMatchesFlags.
*/
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
Mat matches1to2_mat = matches1to2;
Mat matchesMask_mat = matchesMask;
drawMatches_0(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3], matchesMask_mat.nativeObj, flags);
}
/**
* Draws the found matches of keypoints from two images.
*
* @param img1 First source image.
* @param keypoints1 Keypoints from the first source image.
* @param img2 Second source image.
* @param keypoints2 Keypoints from the second source image.
* @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
* has a corresponding point in keypoints2[matches[i]] .
* @param outImg Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param matchColor Color of matches (lines and connected keypoints). If matchColor==Scalar::all(-1)
* , the color is generated randomly.
* @param singlePointColor Color of single keypoints (circles), which means that keypoints do not
* have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
* @param matchesMask Mask determining which matches are drawn. If the mask is empty, all matches are
* drawn.
* DrawMatchesFlags.
*
* This function draws matches of keypoints from two images in the output image. Match is a line
* connecting two keypoints (circles). See cv::DrawMatchesFlags.
*/
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
Mat matches1to2_mat = matches1to2;
Mat matchesMask_mat = matchesMask;
drawMatches_1(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3], matchesMask_mat.nativeObj);
}
/**
* Draws the found matches of keypoints from two images.
*
* @param img1 First source image.
* @param keypoints1 Keypoints from the first source image.
* @param img2 Second source image.
* @param keypoints2 Keypoints from the second source image.
* @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
* has a corresponding point in keypoints2[matches[i]] .
* @param outImg Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param matchColor Color of matches (lines and connected keypoints). If matchColor==Scalar::all(-1)
* , the color is generated randomly.
* @param singlePointColor Color of single keypoints (circles), which means that keypoints do not
* have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
* drawn.
* DrawMatchesFlags.
*
* This function draws matches of keypoints from two images in the output image. Match is a line
* connecting two keypoints (circles). See cv::DrawMatchesFlags.
*/
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
Mat matches1to2_mat = matches1to2;
drawMatches_2(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3]);
}
/**
* Draws the found matches of keypoints from two images.
*
* @param img1 First source image.
* @param keypoints1 Keypoints from the first source image.
* @param img2 Second source image.
* @param keypoints2 Keypoints from the second source image.
* @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
* has a corresponding point in keypoints2[matches[i]] .
* @param outImg Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* @param matchColor Color of matches (lines and connected keypoints). If matchColor==Scalar::all(-1)
* , the color is generated randomly.
* have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
* drawn.
* DrawMatchesFlags.
*
* This function draws matches of keypoints from two images in the output image. Match is a line
* connecting two keypoints (circles). See cv::DrawMatchesFlags.
*/
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
Mat matches1to2_mat = matches1to2;
drawMatches_3(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3]);
}
/**
* Draws the found matches of keypoints from two images.
*
* @param img1 First source image.
* @param keypoints1 Keypoints from the first source image.
* @param img2 Second source image.
* @param keypoints2 Keypoints from the second source image.
* @param matches1to2 Matches from the first image to the second one, which means that keypoints1[i]
* has a corresponding point in keypoints2[matches[i]] .
* @param outImg Output image. Its content depends on the flags value defining what is drawn in the
* output image. See possible flags bit values below.
* , the color is generated randomly.
* have the matches. If singlePointColor==Scalar::all(-1) , the color is generated randomly.
* drawn.
* DrawMatchesFlags.
*
* This function draws matches of keypoints from two images in the output image. Match is a line
* connecting two keypoints (circles). See cv::DrawMatchesFlags.
*/
public static void drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
Mat matches1to2_mat = matches1to2;
drawMatches_4(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj);
}
//
// C++: void cv::drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_vector_DMatch matches1to2, Mat& outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_vector_char matchesMask = std::vector >(), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
//
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List matchesMask, int flags) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
List matches1to2_tmplm = new ArrayList((matches1to2 != null) ? matches1to2.size() : 0);
Mat matches1to2_mat = Converters.vector_vector_DMatch_to_Mat(matches1to2, matches1to2_tmplm);
List matchesMask_tmplm = new ArrayList((matchesMask != null) ? matchesMask.size() : 0);
Mat matchesMask_mat = Converters.vector_vector_char_to_Mat(matchesMask, matchesMask_tmplm);
drawMatchesKnn_0(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3], matchesMask_mat.nativeObj, flags);
}
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, List matchesMask) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
List matches1to2_tmplm = new ArrayList((matches1to2 != null) ? matches1to2.size() : 0);
Mat matches1to2_mat = Converters.vector_vector_DMatch_to_Mat(matches1to2, matches1to2_tmplm);
List matchesMask_tmplm = new ArrayList((matchesMask != null) ? matchesMask.size() : 0);
Mat matchesMask_mat = Converters.vector_vector_char_to_Mat(matchesMask, matchesMask_tmplm);
drawMatchesKnn_1(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3], matchesMask_mat.nativeObj);
}
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
List matches1to2_tmplm = new ArrayList((matches1to2 != null) ? matches1to2.size() : 0);
Mat matches1to2_mat = Converters.vector_vector_DMatch_to_Mat(matches1to2, matches1to2_tmplm);
drawMatchesKnn_2(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3], singlePointColor.val[0], singlePointColor.val[1], singlePointColor.val[2], singlePointColor.val[3]);
}
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List matches1to2, Mat outImg, Scalar matchColor) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
List matches1to2_tmplm = new ArrayList((matches1to2 != null) ? matches1to2.size() : 0);
Mat matches1to2_mat = Converters.vector_vector_DMatch_to_Mat(matches1to2, matches1to2_tmplm);
drawMatchesKnn_3(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj, matchColor.val[0], matchColor.val[1], matchColor.val[2], matchColor.val[3]);
}
public static void drawMatchesKnn(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, List matches1to2, Mat outImg) {
Mat keypoints1_mat = keypoints1;
Mat keypoints2_mat = keypoints2;
List matches1to2_tmplm = new ArrayList((matches1to2 != null) ? matches1to2.size() : 0);
Mat matches1to2_mat = Converters.vector_vector_DMatch_to_Mat(matches1to2, matches1to2_tmplm);
drawMatchesKnn_4(img1.nativeObj, keypoints1_mat.nativeObj, img2.nativeObj, keypoints2_mat.nativeObj, matches1to2_mat.nativeObj, outImg.nativeObj);
}
// C++: void cv::drawKeypoints(Mat image, vector_KeyPoint keypoints, Mat& outImage, Scalar color = Scalar::all(-1), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
private static native void drawKeypoints_0(long image_nativeObj, long keypoints_mat_nativeObj, long outImage_nativeObj, double color_val0, double color_val1, double color_val2, double color_val3, int flags);
private static native void drawKeypoints_1(long image_nativeObj, long keypoints_mat_nativeObj, long outImage_nativeObj, double color_val0, double color_val1, double color_val2, double color_val3);
private static native void drawKeypoints_2(long image_nativeObj, long keypoints_mat_nativeObj, long outImage_nativeObj);
// C++: void cv::drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_DMatch matches1to2, Mat& outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_char matchesMask = std::vector(), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
private static native void drawMatches_0(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3, long matchesMask_mat_nativeObj, int flags);
private static native void drawMatches_1(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3, long matchesMask_mat_nativeObj);
private static native void drawMatches_2(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3);
private static native void drawMatches_3(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3);
private static native void drawMatches_4(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj);
// C++: void cv::drawMatches(Mat img1, vector_KeyPoint keypoints1, Mat img2, vector_KeyPoint keypoints2, vector_vector_DMatch matches1to2, Mat& outImg, Scalar matchColor = Scalar::all(-1), Scalar singlePointColor = Scalar::all(-1), vector_vector_char matchesMask = std::vector >(), DrawMatchesFlags flags = DrawMatchesFlags::DEFAULT)
private static native void drawMatchesKnn_0(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3, long matchesMask_mat_nativeObj, int flags);
private static native void drawMatchesKnn_1(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3, long matchesMask_mat_nativeObj);
private static native void drawMatchesKnn_2(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3, double singlePointColor_val0, double singlePointColor_val1, double singlePointColor_val2, double singlePointColor_val3);
private static native void drawMatchesKnn_3(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj, double matchColor_val0, double matchColor_val1, double matchColor_val2, double matchColor_val3);
private static native void drawMatchesKnn_4(long img1_nativeObj, long keypoints1_mat_nativeObj, long img2_nativeObj, long keypoints2_mat_nativeObj, long matches1to2_mat_nativeObj, long outImg_nativeObj);
}