| Package | Description |
|---|---|
| org.bytedeco.javacpp |
| Modifier and Type | Method and Description |
|---|---|
void |
opencv_contrib.FabMap.add(opencv_core.MatVector queryImgDescriptors) |
void |
opencv_contrib.FabMap2.add(opencv_core.MatVector queryImgDescriptors) |
void |
opencv_contrib.ChowLiuTree.add(opencv_core.MatVector imgDescriptors) |
void |
opencv_features2d.DescriptorMatcher.add(opencv_core.MatVector descriptors) |
void |
opencv_features2d.FlannBasedMatcher.add(opencv_core.MatVector descriptors) |
void |
opencv_features2d.GenericDescriptorMatcher.add(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints) |
void |
opencv_features2d.VectorDescriptorMatcher.add(opencv_core.MatVector imgCollection,
opencv_features2d.KeyPointVectorVector pointCollection) |
int |
opencv_objdetect.Detector.addTemplate(opencv_core.MatVector sources,
BytePointer class_id,
opencv_core.Mat object_mask) |
int |
opencv_objdetect.Detector.addTemplate(opencv_core.MatVector sources,
BytePointer class_id,
opencv_core.Mat object_mask,
opencv_core.Rect bounding_box)
\brief Add new object template.
|
int |
opencv_objdetect.Detector.addTemplate(opencv_core.MatVector sources,
String class_id,
opencv_core.Mat object_mask) |
int |
opencv_objdetect.Detector.addTemplate(opencv_core.MatVector sources,
String class_id,
opencv_core.Mat object_mask,
opencv_core.Rect bounding_box) |
void |
opencv_contrib.FabMap.addTraining(opencv_core.MatVector queryImgDescriptors) |
void |
opencv_contrib.FabMap2.addTraining(opencv_core.MatVector queryImgDescriptors) |
void |
opencv_legacy.LDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints) |
void |
opencv_legacy.LDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
int maxCount,
boolean scaleCoords) |
boolean |
opencv_legacy.PlanarObjectDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
opencv_core.Mat H,
opencv_core.Point2f corners) |
boolean |
opencv_legacy.PlanarObjectDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
opencv_core.Mat H,
opencv_core.Point2f corners,
int[] pairs) |
boolean |
opencv_legacy.PlanarObjectDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
opencv_core.Mat H,
opencv_core.Point2f corners,
IntBuffer pairs) |
boolean |
opencv_legacy.PlanarObjectDetector.apply(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
opencv_core.Mat H,
opencv_core.Point2f corners,
IntPointer pairs) |
void |
opencv_nonfree.SIFT.buildDoGPyramid(opencv_core.MatVector pyr,
opencv_core.MatVector dogpyr) |
void |
opencv_nonfree.SIFT.buildGaussianPyramid(opencv_core.Mat base,
opencv_core.MatVector pyr,
int nOctaves) |
static int |
opencv_video.buildOpticalFlowPyramid(opencv_core.Mat img,
opencv_core.MatVector pyramid,
opencv_core.Size winSize,
int maxLevel) |
static int |
opencv_video.buildOpticalFlowPyramid(opencv_core.Mat img,
opencv_core.MatVector pyramid,
opencv_core.Size winSize,
int maxLevel,
boolean withDerivatives,
int pyrBorder,
int derivBorder,
boolean tryReuseInputImage)
constructs a pyramid which can be used as input for calcOpticalFlowPyrLK
|
static void |
opencv_imgproc.buildPyramid(opencv_core.Mat src,
opencv_core.MatVector dst,
int maxlevel) |
static void |
opencv_imgproc.buildPyramid(opencv_core.Mat src,
opencv_core.MatVector dst,
int maxlevel,
int borderType)
builds the gaussian pyramid using pyrDown() as a basic operation
|
static void |
opencv_contrib.LevMarqSparse.bundleAdjust(opencv_core.Point3d points,
opencv_core.Point2dVectorVector imagePoints,
opencv_core.IntVectorVector visibility,
opencv_core.MatVector cameraMatrix,
opencv_core.MatVector R,
opencv_core.MatVector T,
opencv_core.MatVector distCoeffs) |
static void |
opencv_contrib.LevMarqSparse.bundleAdjust(opencv_core.Point3d points,
opencv_core.Point2dVectorVector imagePoints,
opencv_core.IntVectorVector visibility,
opencv_core.MatVector cameraMatrix,
opencv_core.MatVector R,
opencv_core.MatVector T,
opencv_core.MatVector distCoeffs,
opencv_core.TermCriteria criteria,
opencv_contrib.BundleAdjustCallback cb,
Pointer user_data) |
static void |
opencv_imgproc.calcBackProject(opencv_core.MatVector images,
int[] channels,
opencv_core.Mat hist,
opencv_core.Mat dst,
float[] ranges,
double scale) |
static void |
opencv_imgproc.calcBackProject(opencv_core.MatVector images,
IntBuffer channels,
opencv_core.Mat hist,
opencv_core.Mat dst,
FloatBuffer ranges,
double scale) |
static void |
opencv_imgproc.calcBackProject(opencv_core.MatVector images,
IntPointer channels,
opencv_core.Mat hist,
opencv_core.Mat dst,
FloatPointer ranges,
double scale) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
int[] channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
int[] histSize,
float[] ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
int[] channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
int[] histSize,
float[] ranges,
boolean accumulate) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
IntBuffer channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
IntBuffer histSize,
FloatBuffer ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
IntBuffer channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
IntBuffer histSize,
FloatBuffer ranges,
boolean accumulate) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
IntPointer channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
IntPointer histSize,
FloatPointer ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.MatVector images,
IntPointer channels,
opencv_core.Mat mask,
opencv_core.Mat hist,
IntPointer histSize,
FloatPointer ranges,
boolean accumulate) |
static double |
opencv_calib3d.calibrateCamera(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints,
opencv_core.Size imageSize,
opencv_core.Mat cameraMatrix,
opencv_core.Mat distCoeffs,
opencv_core.MatVector rvecs,
opencv_core.MatVector tvecs) |
static double |
opencv_calib3d.calibrateCamera(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints,
opencv_core.Size imageSize,
opencv_core.Mat cameraMatrix,
opencv_core.Mat distCoeffs,
opencv_core.MatVector rvecs,
opencv_core.MatVector tvecs,
int flags,
opencv_core.TermCriteria criteria)
finds intrinsic and extrinsic camera parameters from several fews of a known calibration pattern.
|
static boolean |
opencv_stitching.calibrateRotatingCamera(opencv_core.MatVector Hs,
opencv_core.Mat K) |
void |
opencv_contrib.FabMap.compare(opencv_core.Mat queryImgDescriptor,
opencv_core.MatVector testImgDescriptors,
opencv_contrib.IMatch matches) |
void |
opencv_contrib.FabMap.compare(opencv_core.Mat queryImgDescriptor,
opencv_core.MatVector testImgDescriptors,
opencv_contrib.IMatch matches,
opencv_core.Mat mask) |
void |
opencv_contrib.FabMap.compare(opencv_core.MatVector queryImgDescriptors,
opencv_contrib.IMatch matches) |
void |
opencv_contrib.FabMap.compare(opencv_core.MatVector queryImgDescriptors,
opencv_contrib.IMatch matches,
boolean addQuery,
opencv_core.Mat mask) |
void |
opencv_contrib.FabMap.compare(opencv_core.MatVector queryImgDescriptors,
opencv_core.MatVector testImgDescriptors,
opencv_contrib.IMatch matches) |
void |
opencv_contrib.FabMap.compare(opencv_core.MatVector queryImgDescriptors,
opencv_core.MatVector testImgDescriptors,
opencv_contrib.IMatch matches,
opencv_core.Mat mask) |
void |
opencv_contrib.LDA.compute(opencv_core.MatVector src,
opencv_core.Mat labels)
Compute the discriminants for data in src and labels.
|
void |
opencv_features2d.DescriptorExtractor.compute(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints,
opencv_core.MatVector descriptors) |
static void |
opencv_stitching.createLaplacePyr(opencv_core.Mat img,
int num_levels,
opencv_core.MatVector pyr) |
static void |
opencv_stitching.createLaplacePyrGpu(opencv_core.Mat img,
int num_levels,
opencv_core.MatVector pyr) |
opencv_core.Rect |
opencv_stitching.FeatherBlender.createWeightMaps(opencv_core.MatVector masks,
opencv_core.Point corners,
opencv_core.MatVector weight_maps) |
void |
opencv_features2d.FeatureDetector.detect(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints) |
void |
opencv_features2d.FeatureDetector.detect(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints,
opencv_core.MatVector masks) |
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color,
int thickness,
int lineType,
opencv_core.Mat hierarchy,
int maxLevel,
opencv_core.Point offset)
draws contours in the image
|
static void |
opencv_photo.fastNlMeansDenoisingColoredMulti(opencv_core.MatVector srcImgs,
opencv_core.Mat dst,
int imgToDenoiseIndex,
int temporalWindowSize) |
static void |
opencv_photo.fastNlMeansDenoisingColoredMulti(opencv_core.MatVector srcImgs,
opencv_core.Mat dst,
int imgToDenoiseIndex,
int temporalWindowSize,
float h,
float hColor,
int templateWindowSize,
int searchWindowSize) |
static void |
opencv_photo.fastNlMeansDenoisingMulti(opencv_core.MatVector srcImgs,
opencv_core.Mat dst,
int imgToDenoiseIndex,
int temporalWindowSize) |
static void |
opencv_photo.fastNlMeansDenoisingMulti(opencv_core.MatVector srcImgs,
opencv_core.Mat dst,
int imgToDenoiseIndex,
int temporalWindowSize,
float h,
int templateWindowSize,
int searchWindowSize) |
void |
opencv_stitching.ExposureCompensator.feed(opencv_core.Point corners,
opencv_core.MatVector images,
opencv_core.MatVector masks) |
void |
opencv_stitching.ExposureCompensator.feed(opencv_core.Point corners,
opencv_core.MatVector images,
opencv_stitching.MatBytePairVector masks) |
void |
opencv_stitching.NoExposureCompensator.feed(opencv_core.Point arg0,
opencv_core.MatVector arg1,
opencv_stitching.MatBytePairVector arg2) |
void |
opencv_stitching.GainCompensator.feed(opencv_core.Point corners,
opencv_core.MatVector images,
opencv_stitching.MatBytePairVector masks) |
void |
opencv_stitching.BlocksGainCompensator.feed(opencv_core.Point corners,
opencv_core.MatVector images,
opencv_stitching.MatBytePairVector masks) |
static void |
opencv_core.fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color) |
static void |
opencv_core.fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
void |
opencv_stitching.SeamFinder.find(opencv_core.MatVector src,
opencv_core.Point corners,
opencv_core.MatVector masks) |
void |
opencv_stitching.NoSeamFinder.find(opencv_core.MatVector arg0,
opencv_core.Point arg1,
opencv_core.MatVector arg2) |
void |
opencv_stitching.PairwiseSeamFinder.find(opencv_core.MatVector src,
opencv_core.Point corners,
opencv_core.MatVector masks) |
void |
opencv_stitching.DpSeamFinder.find(opencv_core.MatVector src,
opencv_core.Point corners,
opencv_core.MatVector masks) |
void |
opencv_stitching.GraphCutSeamFinder.find(opencv_core.MatVector src,
opencv_core.Point corners,
opencv_core.MatVector masks) |
void |
opencv_stitching.GraphCutSeamFinderGpu.find(opencv_core.MatVector src,
opencv_core.Point corners,
opencv_core.MatVector masks) |
void |
opencv_stitching.VoronoiSeamFinder.find(opencv_core.Size size,
opencv_core.Point corners,
opencv_core.MatVector masks) |
static void |
opencv_imgproc.findContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int mode,
int method) |
static void |
opencv_imgproc.findContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int mode,
int method,
opencv_core.Point offset)
retrieves contours from black-n-white image.
|
static void |
opencv_imgproc.findContours(opencv_core.Mat image,
opencv_core.MatVector contours,
opencv_core.Mat hierarchy,
int mode,
int method) |
static void |
opencv_imgproc.findContours(opencv_core.Mat image,
opencv_core.MatVector contours,
opencv_core.Mat hierarchy,
int mode,
int method,
opencv_core.Point offset)
retrieves contours and the hierarchical information from black-n-white image.
|
static void |
opencv_objdetect.findDataMatrix(opencv_core.Mat image,
opencv_core.StringVector codes,
opencv_core.Mat corners,
opencv_core.MatVector dmtx) |
void |
opencv_nonfree.SIFT.findScaleSpaceExtrema(opencv_core.MatVector gauss_pyr,
opencv_core.MatVector dog_pyr,
opencv_features2d.KeyPoint keypoints) |
void |
opencv_legacy.CvEM.getCovs(opencv_core.MatVector covs) |
static opencv_core.Mat |
opencv_videostab.getMotion(int from,
int to,
opencv_core.MatVector motions) |
static void |
opencv_core.hconcat(opencv_core.MatVector src,
opencv_core.Mat dst) |
static opencv_core.Mat |
opencv_calib3d.initCameraMatrix2D(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints,
opencv_core.Size imageSize) |
static opencv_core.Mat |
opencv_calib3d.initCameraMatrix2D(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints,
opencv_core.Size imageSize,
double aspectRatio)
initializes camera matrix from a few 3D points and the corresponding projections.
|
void |
opencv_features2d.DescriptorMatcher.knnMatch(opencv_core.Mat queryDescriptors,
opencv_features2d.DMatchVectorVector matches,
int k,
opencv_core.MatVector masks,
boolean compactResult) |
void |
opencv_features2d.GenericDescriptorMatcher.knnMatch(opencv_core.Mat queryImage,
opencv_features2d.KeyPoint queryKeypoints,
opencv_features2d.DMatchVectorVector matches,
int k,
opencv_core.MatVector masks,
boolean compactResult) |
void |
opencv_features2d.DescriptorMatcher.match(opencv_core.Mat queryDescriptors,
opencv_features2d.DMatch matches,
opencv_core.MatVector masks) |
void |
opencv_features2d.GenericDescriptorMatcher.match(opencv_core.Mat queryImage,
opencv_features2d.KeyPoint queryKeypoints,
opencv_features2d.DMatch matches,
opencv_core.MatVector masks) |
void |
opencv_objdetect.Detector.match(opencv_core.MatVector sources,
float threshold,
opencv_objdetect.Match matches) |
void |
opencv_objdetect.Detector.match(opencv_core.MatVector sources,
float threshold,
opencv_objdetect.Match matches,
opencv_core.StringVector class_ids,
opencv_core.MatVector quantized_images,
opencv_core.MatVector masks)
\brief Detect objects by template matching.
|
static void |
opencv_core.merge(opencv_core.MatVector mv,
opencv_core.Mat dst) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
int[] fromTo) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
int[] fromTo,
long npairs) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntBuffer fromTo) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntBuffer fromTo,
long npairs) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntPointer fromTo) |
static void |
opencv_core.mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntPointer fromTo,
long npairs) |
static void |
opencv_core.polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_core.polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
void |
opencv_features2d.DescriptorMatcher.radiusMatch(opencv_core.Mat queryDescriptors,
opencv_features2d.DMatchVectorVector matches,
float maxDistance,
opencv_core.MatVector masks,
boolean compactResult) |
void |
opencv_features2d.GenericDescriptorMatcher.radiusMatch(opencv_core.Mat queryImage,
opencv_features2d.KeyPoint queryKeypoints,
opencv_features2d.DMatchVectorVector matches,
float maxDistance,
opencv_core.MatVector masks,
boolean compactResult) |
static float |
opencv_calib3d.rectify3Collinear(opencv_core.Mat cameraMatrix1,
opencv_core.Mat distCoeffs1,
opencv_core.Mat cameraMatrix2,
opencv_core.Mat distCoeffs2,
opencv_core.Mat cameraMatrix3,
opencv_core.Mat distCoeffs3,
opencv_core.MatVector imgpt1,
opencv_core.MatVector imgpt3,
opencv_core.Size imageSize,
opencv_core.Mat R12,
opencv_core.Mat T12,
opencv_core.Mat R13,
opencv_core.Mat T13,
opencv_core.Mat R1,
opencv_core.Mat R2,
opencv_core.Mat R3,
opencv_core.Mat P1,
opencv_core.Mat P2,
opencv_core.Mat P3,
opencv_core.Mat Q,
double alpha,
opencv_core.Size newImgSize,
opencv_core.Rect roi1,
opencv_core.Rect roi2,
int flags)
computes the rectification transformations for 3-head camera, where all the heads are on the same line.
|
static void |
opencv_stitching.restoreImageFromLaplacePyr(opencv_core.MatVector pyr) |
static void |
opencv_stitching.restoreImageFromLaplacePyrGpu(opencv_core.MatVector pyr) |
static opencv_core.Rect |
opencv_stitching.resultRoi(opencv_core.Point corners,
opencv_core.MatVector images) |
IntPointer |
opencv_features2d.FREAK.selectPairs(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints) |
IntPointer |
opencv_features2d.FREAK.selectPairs(opencv_core.MatVector images,
opencv_features2d.KeyPointVectorVector keypoints,
double corrThresh,
boolean verbose)
select the 512 "best description pairs"
|
void |
opencv_core.Algorithm.set(BytePointer name,
opencv_core.MatVector value) |
void |
opencv_core.Algorithm.set(String name,
opencv_core.MatVector value) |
void |
opencv_videostab.InpainterBase.setFrames(opencv_core.MatVector val) |
void |
opencv_videostab.InpaintingPipeline.setFrames(opencv_core.MatVector val) |
void |
opencv_videostab.DeblurerBase.setFrames(opencv_core.MatVector val) |
void |
opencv_core.Algorithm.setMatVector(BytePointer name,
opencv_core.MatVector value) |
void |
opencv_core.Algorithm.setMatVector(String name,
opencv_core.MatVector value) |
void |
opencv_videostab.InpainterBase.setMotions(opencv_core.MatVector val) |
void |
opencv_videostab.InpaintingPipeline.setMotions(opencv_core.MatVector val) |
void |
opencv_videostab.DeblurerBase.setMotions(opencv_core.MatVector val) |
void |
opencv_videostab.InpainterBase.setStabilizationMotions(opencv_core.MatVector val) |
void |
opencv_videostab.InpaintingPipeline.setStabilizationMotions(opencv_core.MatVector val) |
void |
opencv_videostab.InpainterBase.setStabilizedFrames(opencv_core.MatVector val) |
void |
opencv_videostab.InpaintingPipeline.setStabilizedFrames(opencv_core.MatVector val) |
static void |
opencv_core.split(opencv_core.Mat m,
opencv_core.MatVector mv) |
static double |
opencv_calib3d.stereoCalibrate(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints1,
opencv_core.MatVector imagePoints2,
opencv_core.Mat cameraMatrix1,
opencv_core.Mat distCoeffs1,
opencv_core.Mat cameraMatrix2,
opencv_core.Mat distCoeffs2,
opencv_core.Size imageSize,
opencv_core.Mat R,
opencv_core.Mat T,
opencv_core.Mat E,
opencv_core.Mat F) |
static double |
opencv_calib3d.stereoCalibrate(opencv_core.MatVector objectPoints,
opencv_core.MatVector imagePoints1,
opencv_core.MatVector imagePoints2,
opencv_core.Mat cameraMatrix1,
opencv_core.Mat distCoeffs1,
opencv_core.Mat cameraMatrix2,
opencv_core.Mat distCoeffs2,
opencv_core.Size imageSize,
opencv_core.Mat R,
opencv_core.Mat T,
opencv_core.Mat E,
opencv_core.Mat F,
opencv_core.TermCriteria criteria,
int flags)
finds intrinsic and extrinsic parameters of a stereo camera
|
void |
opencv_legacy.PlanarObjectDetector.train(opencv_core.MatVector pyr) |
void |
opencv_legacy.PlanarObjectDetector.train(opencv_core.MatVector pyr,
int _npoints,
int _patchSize,
int _nstructs,
int _structSize,
int _nviews,
opencv_legacy.LDetector detector,
opencv_legacy.PatchGenerator patchGenerator) |
void |
opencv_contrib.FaceRecognizer.train(opencv_core.MatVector src,
opencv_core.Mat labels)
virtual destructor
|
void |
opencv_legacy.PlanarObjectDetector.train(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints) |
void |
opencv_legacy.PlanarObjectDetector.train(opencv_core.MatVector pyr,
opencv_features2d.KeyPoint keypoints,
int _patchSize,
int _nstructs,
int _structSize,
int _nviews,
opencv_legacy.LDetector detector,
opencv_legacy.PatchGenerator patchGenerator) |
void |
opencv_legacy.FernClassifier.train(opencv_core.Point2fVectorVector points,
opencv_core.MatVector refimgs) |
void |
opencv_legacy.FernClassifier.train(opencv_core.Point2fVectorVector points,
opencv_core.MatVector refimgs,
opencv_core.IntVectorVector labels,
int _nclasses,
int _patchSize,
int _signatureSize,
int _nstructs,
int _structSize,
int _nviews,
int _compressionMethod,
opencv_legacy.PatchGenerator patchGenerator) |
void |
opencv_contrib.FaceRecognizer.update(opencv_core.MatVector src,
opencv_core.Mat labels) |
static void |
opencv_core.vconcat(opencv_core.MatVector src,
opencv_core.Mat dst) |
static void |
opencv_stitching.waveCorrect(opencv_core.MatVector rmats,
int kind) |
| Constructor and Description |
|---|
opencv_contrib.LDA(opencv_core.MatVector src,
opencv_core.Mat labels) |
opencv_contrib.LDA(opencv_core.MatVector src,
opencv_core.Mat labels,
int num_components) |
opencv_legacy.FernClassifier(opencv_core.Point2fVectorVector points,
opencv_core.MatVector refimgs) |
opencv_legacy.FernClassifier(opencv_core.Point2fVectorVector points,
opencv_core.MatVector refimgs,
opencv_core.IntVectorVector labels,
int _nclasses,
int _patchSize,
int _signatureSize,
int _nstructs,
int _structSize,
int _nviews,
int _compressionMethod,
opencv_legacy.PatchGenerator patchGenerator) |
opencv_legacy.PlanarObjectDetector(opencv_core.MatVector pyr) |
opencv_legacy.PlanarObjectDetector(opencv_core.MatVector pyr,
int _npoints,
int _patchSize,
int _nstructs,
int _structSize,
int _nviews,
opencv_legacy.LDetector detector,
opencv_legacy.PatchGenerator patchGenerator) |
Copyright © 2014. All Rights Reserved.