| Package | Description |
|---|---|
| org.bytedeco.javacpp |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.KeyPointVector[] |
opencv_core.KeyPointVectorVector.get() |
opencv_core.KeyPointVector |
opencv_core.KeyPointVectorVector.Iterator.get() |
opencv_core.KeyPointVector |
opencv_core.KeyPointVectorVector.get(long i) |
opencv_core.KeyPointVector |
opencv_stitching.ImageFeatures.keypoints() |
opencv_core.KeyPointVector |
opencv_core.KeyPointVectorVector.pop_back() |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.push_back(opencv_core.KeyPoint value) |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.put(long i,
opencv_core.KeyPoint value) |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.put(opencv_core.KeyPoint... array) |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.put(opencv_core.KeyPoint value) |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.put(opencv_core.KeyPointVector x) |
| Modifier and Type | Method and Description |
|---|---|
static void |
opencv_features2d.AGAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.AGAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression) |
static void |
opencv_features2d.AGAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
static void |
opencv_features2d.AGAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.AGAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression)
\overload
|
static void |
opencv_features2d.AGAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type)
\brief Detects corners using the AGAST algorithm
|
static void |
opencv_features2d.AGAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.AGAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression) |
static void |
opencv_features2d.AGAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
void |
opencv_xfeatures2d.DAISY.compute(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat descriptors) |
void |
opencv_features2d.Feature2D.compute(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat descriptors) |
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat imgDescriptor) |
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat imgDescriptor,
opencv_core.IntVectorVector pointIdxsOfClusters,
opencv_core.Mat descriptors) |
void |
opencv_xfeatures2d.DAISY.compute(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat descriptors)
\overload
|
void |
opencv_features2d.Feature2D.compute(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat descriptors)
\brief Computes the descriptors for a set of keypoints detected in an image (first variant) or image set
(second variant).
|
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat imgDescriptor) |
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat imgDescriptor,
opencv_core.IntVectorVector pointIdxsOfClusters,
opencv_core.Mat descriptors)
\brief Computes an image descriptor using the set visual vocabulary.
|
void |
opencv_xfeatures2d.DAISY.compute(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat descriptors) |
void |
opencv_features2d.Feature2D.compute(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat descriptors) |
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat imgDescriptor) |
void |
opencv_features2d.BOWImgDescriptorExtractor.compute(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat imgDescriptor,
opencv_core.IntVectorVector pointIdxsOfClusters,
opencv_core.Mat descriptors) |
static void |
opencv_core.KeyPoint.convert(opencv_core.KeyPointVector keypoints,
opencv_core.Point2fVector points2f) |
static void |
opencv_core.KeyPoint.convert(opencv_core.KeyPointVector keypoints,
opencv_core.Point2fVector points2f,
int[] keypointIndexes) |
static void |
opencv_core.KeyPoint.convert(opencv_core.KeyPointVector keypoints,
opencv_core.Point2fVector points2f,
IntBuffer keypointIndexes) |
static void |
opencv_core.KeyPoint.convert(opencv_core.KeyPointVector keypoints,
opencv_core.Point2fVector points2f,
org.bytedeco.javacpp.IntPointer keypointIndexes)
This method converts vector of keypoints to vector of points or the reverse, where each keypoint is
assigned the same size and the same orientation.
|
static void |
opencv_core.KeyPoint.convert(opencv_core.Point2fVector points2f,
opencv_core.KeyPointVector keypoints) |
static void |
opencv_core.KeyPoint.convert(opencv_core.Point2fVector points2f,
opencv_core.KeyPointVector keypoints,
float size,
float response,
int octave,
int class_id)
\overload
|
void |
opencv_features2d.Feature2D.detect(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints) |
void |
opencv_features2d.Feature2D.detect(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat mask) |
void |
opencv_features2d.Feature2D.detect(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints) |
void |
opencv_features2d.Feature2D.detect(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat mask)
\brief Detects keypoints in an image (first variant) or image set (second variant).
|
void |
opencv_features2d.Feature2D.detect(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints) |
void |
opencv_features2d.Feature2D.detect(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat mask) |
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.GpuMat image,
opencv_core.GpuMat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat descriptors) |
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.GpuMat image,
opencv_core.GpuMat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat descriptors,
boolean useProvidedKeypoints) |
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.Mat image,
opencv_core.Mat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat descriptors) |
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.Mat image,
opencv_core.Mat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat descriptors,
boolean useProvidedKeypoints)
Detects keypoints and computes the descriptors
|
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.UMat image,
opencv_core.UMat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat descriptors) |
void |
opencv_features2d.Feature2D.detectAndCompute(opencv_core.UMat image,
opencv_core.UMat mask,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat descriptors,
boolean useProvidedKeypoints) |
static void |
opencv_features2d.drawKeypoints(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat outImage) |
static void |
opencv_features2d.drawKeypoints(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.GpuMat outImage,
opencv_core.Scalar color,
int flags) |
static void |
opencv_features2d.drawKeypoints(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat outImage) |
static void |
opencv_features2d.drawKeypoints(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat outImage,
opencv_core.Scalar color,
int flags)
\brief Draws keypoints.
|
static void |
opencv_features2d.drawKeypoints(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat outImage) |
static void |
opencv_features2d.drawKeypoints(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat outImage,
opencv_core.Scalar color,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.GpuMat outImg) |
static void |
opencv_features2d.drawMatches(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.GpuMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
byte[] matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.GpuMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
ByteBuffer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.GpuMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
org.bytedeco.javacpp.BytePointer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg) |
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
byte[] matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
ByteBuffer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
org.bytedeco.javacpp.BytePointer matchesMask,
int flags)
\brief Draws the found matches of keypoints from two images.
|
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg) |
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
byte[] matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
ByteBuffer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
org.bytedeco.javacpp.BytePointer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.GpuMat outImg) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.GpuMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.GpuMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.GpuMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
opencv_core.ByteVectorVector matchesMask,
int flags) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.Mat outImg) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
opencv_core.ByteVectorVector matchesMask,
int flags)
\overload
|
static void |
opencv_features2d.drawMatchesKnn(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.UMat outImg) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
opencv_core.ByteVectorVector matchesMask,
int flags) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
float[] repeatability,
int[] correspCount) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
float[] repeatability,
int[] correspCount,
opencv_features2d.Feature2D fdetector) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
FloatBuffer repeatability,
IntBuffer correspCount) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
FloatBuffer repeatability,
IntBuffer correspCount,
opencv_features2d.Feature2D fdetector) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
org.bytedeco.javacpp.FloatPointer repeatability,
org.bytedeco.javacpp.IntPointer correspCount) |
static void |
opencv_features2d.evaluateFeatureDetector(opencv_core.Mat img1,
opencv_core.Mat img2,
opencv_core.Mat H1to2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
org.bytedeco.javacpp.FloatPointer repeatability,
org.bytedeco.javacpp.IntPointer correspCount,
opencv_features2d.Feature2D fdetector)
\} features2d_draw
|
static void |
opencv_features2d.FAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.FAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression) |
static void |
opencv_features2d.FAST(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
static void |
opencv_features2d.FAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.FAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression)
\overload
|
static void |
opencv_features2d.FAST(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type)
\brief Detects corners using the FAST algorithm
|
static void |
opencv_features2d.FAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_features2d.FAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression) |
static void |
opencv_features2d.FAST(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.GpuMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type)
\brief Estimates cornerness for prespecified KeyPoints using the FAST algorithm
|
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold) |
static void |
opencv_xfeatures2d.FASTForPointSet(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
int threshold,
boolean nonmaxSuppression,
int type) |
opencv_core.KeyPointVectorVector.Iterator |
opencv_core.KeyPointVectorVector.insert(opencv_core.KeyPointVectorVector.Iterator pos,
opencv_core.KeyPointVector value) |
opencv_stitching.ImageFeatures |
opencv_stitching.ImageFeatures.keypoints(opencv_core.KeyPointVector keypoints) |
static void |
opencv_xfeatures2d.matchGMS(opencv_core.Size size1,
opencv_core.Size size2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.DMatchVector matchesGMS) |
static void |
opencv_xfeatures2d.matchGMS(opencv_core.Size size1,
opencv_core.Size size2,
opencv_core.KeyPointVector keypoints1,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.DMatchVector matchesGMS,
boolean withRotation,
boolean withScale,
double thresholdFactor)
\}
|
opencv_core.KeyPointVectorVector |
opencv_core.KeyPointVectorVector.push_back(opencv_core.KeyPointVector value) |
opencv_core.KeyPointVectorVector |
opencv_core.KeyPointVectorVector.put(long i,
opencv_core.KeyPointVector value) |
opencv_core.KeyPointVectorVector |
opencv_core.KeyPointVectorVector.put(opencv_core.KeyPointVector... array) |
opencv_core.KeyPointVector |
opencv_core.KeyPointVector.put(opencv_core.KeyPointVector x) |
opencv_core.KeyPointVectorVector |
opencv_core.KeyPointVectorVector.put(opencv_core.KeyPointVector value) |
static void |
opencv_core.read(opencv_core.FileNode node,
opencv_core.KeyPointVector keypoints) |
static void |
opencv_core.read(opencv_core.FileNode node,
opencv_core.KeyPointVector vec,
opencv_core.KeyPointVector default_value) |
static void |
opencv_features2d.KeyPointsFilter.removeDuplicated(opencv_core.KeyPointVector keypoints) |
static void |
opencv_features2d.KeyPointsFilter.removeDuplicatedSorted(opencv_core.KeyPointVector keypoints) |
static void |
opencv_features2d.KeyPointsFilter.retainBest(opencv_core.KeyPointVector keypoints,
int npoints) |
static void |
opencv_features2d.KeyPointsFilter.runByImageBorder(opencv_core.KeyPointVector keypoints,
opencv_core.Size imageSize,
int borderSize) |
static void |
opencv_features2d.KeyPointsFilter.runByKeypointSize(opencv_core.KeyPointVector keypoints,
float minSize) |
static void |
opencv_features2d.KeyPointsFilter.runByKeypointSize(opencv_core.KeyPointVector keypoints,
float minSize,
float maxSize) |
static void |
opencv_features2d.KeyPointsFilter.runByPixelsMask(opencv_core.KeyPointVector keypoints,
opencv_core.Mat mask) |
static void |
opencv_core.shiftRight(opencv_core.FileNode n,
opencv_core.KeyPointVector vec) |
static void |
opencv_core.write(opencv_core.FileStorage fs,
org.bytedeco.javacpp.BytePointer name,
opencv_core.KeyPointVector value) |
static void |
opencv_core.write(opencv_core.FileStorage fs,
opencv_core.KeyPointVector vec) |
static void |
opencv_core.write(opencv_core.FileStorage fs,
String name,
opencv_core.KeyPointVector value) |
| Constructor and Description |
|---|
KeyPointVectorVector(opencv_core.KeyPointVector... array) |
KeyPointVectorVector(opencv_core.KeyPointVector value) |
Copyright © 2018. All rights reserved.