void |
BOWImgDescriptorExtractor.compute(Mat image,
MatOfKeyPoint keypoints,
Mat imgDescriptor) |
|
void |
Feature2D.compute(Mat image,
MatOfKeyPoint keypoints,
Mat descriptors) |
Computes the descriptors for a set of keypoints detected in an image (first variant) or image set
(second variant).
|
void |
Feature2D.detect(Mat image,
MatOfKeyPoint keypoints) |
Detects keypoints in an image (first variant) or image set (second variant).
|
void |
Feature2D.detect(Mat image,
MatOfKeyPoint keypoints,
Mat mask) |
Detects keypoints in an image (first variant) or image set (second variant).
|
void |
Feature2D.detectAndCompute(Mat image,
Mat mask,
MatOfKeyPoint keypoints,
Mat descriptors) |
Detects keypoints and computes the descriptors
|
void |
Feature2D.detectAndCompute(Mat image,
Mat mask,
MatOfKeyPoint keypoints,
Mat descriptors,
boolean useProvidedKeypoints) |
Detects keypoints and computes the descriptors
|
static void |
Features2d.drawKeypoints(Mat image,
MatOfKeyPoint keypoints,
Mat outImage) |
Draws keypoints.
|
static void |
Features2d.drawKeypoints(Mat image,
MatOfKeyPoint keypoints,
Mat outImage,
Scalar color) |
Draws keypoints.
|
static void |
Features2d.drawKeypoints(Mat image,
MatOfKeyPoint keypoints,
Mat outImage,
Scalar color,
int flags) |
Draws keypoints.
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg) |
Draws the found matches of keypoints from two images.
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
int matchesThickness) |
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
int matchesThickness,
Scalar matchColor) |
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
int matchesThickness,
Scalar matchColor,
Scalar singlePointColor) |
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
int matchesThickness,
Scalar matchColor,
Scalar singlePointColor,
MatOfByte matchesMask) |
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
int matchesThickness,
Scalar matchColor,
Scalar singlePointColor,
MatOfByte matchesMask,
int flags) |
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
Scalar matchColor) |
Draws the found matches of keypoints from two images.
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor) |
Draws the found matches of keypoints from two images.
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor,
MatOfByte matchesMask) |
Draws the found matches of keypoints from two images.
|
static void |
Features2d.drawMatches(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
MatOfDMatch matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor,
MatOfByte matchesMask,
int flags) |
Draws the found matches of keypoints from two images.
|
static void |
Features2d.drawMatchesKnn(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
List<MatOfDMatch> matches1to2,
Mat outImg) |
|
static void |
Features2d.drawMatchesKnn(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
List<MatOfDMatch> matches1to2,
Mat outImg,
Scalar matchColor) |
|
static void |
Features2d.drawMatchesKnn(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
List<MatOfDMatch> matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor) |
|
static void |
Features2d.drawMatchesKnn(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
List<MatOfDMatch> matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor,
List<MatOfByte> matchesMask) |
|
static void |
Features2d.drawMatchesKnn(Mat img1,
MatOfKeyPoint keypoints1,
Mat img2,
MatOfKeyPoint keypoints2,
List<MatOfDMatch> matches1to2,
Mat outImg,
Scalar matchColor,
Scalar singlePointColor,
List<MatOfByte> matchesMask,
int flags) |
|