| Package | Description |
|---|---|
| org.opencv.calib3d | |
| org.opencv.core | |
| org.opencv.imgproc | |
| org.opencv.utils | |
| org.opencv.video |
| Modifier and Type | Method and Description |
|---|---|
static void |
Calib3d.drawChessboardCorners(Mat image,
Size patternSize,
MatOfPoint2f corners,
boolean patternWasFound) |
static boolean |
Calib3d.findChessboardCorners(Mat image,
Size patternSize,
MatOfPoint2f corners) |
static boolean |
Calib3d.findChessboardCorners(Mat image,
Size patternSize,
MatOfPoint2f corners,
int flags) |
static Mat |
Calib3d.findFundamentalMat(MatOfPoint2f points1,
MatOfPoint2f points2) |
static Mat |
Calib3d.findFundamentalMat(MatOfPoint2f points1,
MatOfPoint2f points2,
int method,
double ransacReprojThreshold,
double confidence) |
static Mat |
Calib3d.findFundamentalMat(MatOfPoint2f points1,
MatOfPoint2f points2,
int method,
double ransacReprojThreshold,
double confidence,
Mat mask) |
static Mat |
Calib3d.findHomography(MatOfPoint2f srcPoints,
MatOfPoint2f dstPoints) |
static Mat |
Calib3d.findHomography(MatOfPoint2f srcPoints,
MatOfPoint2f dstPoints,
int method,
double ransacReprojThreshold) |
static Mat |
Calib3d.findHomography(MatOfPoint2f srcPoints,
MatOfPoint2f dstPoints,
int method,
double ransacReprojThreshold,
Mat mask,
int maxIters,
double confidence) |
static void |
Calib3d.projectPoints(MatOfPoint3f objectPoints,
Mat rvec,
Mat tvec,
Mat cameraMatrix,
MatOfDouble distCoeffs,
MatOfPoint2f imagePoints) |
static void |
Calib3d.projectPoints(MatOfPoint3f objectPoints,
Mat rvec,
Mat tvec,
Mat cameraMatrix,
MatOfDouble distCoeffs,
MatOfPoint2f imagePoints,
Mat jacobian,
double aspectRatio) |
static void |
Calib3d.projectPoints(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat rvec,
Mat tvec,
Mat K,
Mat D) |
static void |
Calib3d.projectPoints(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat rvec,
Mat tvec,
Mat K,
Mat D,
double alpha,
Mat jacobian) |
static boolean |
Calib3d.solvePnP(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat cameraMatrix,
MatOfDouble distCoeffs,
Mat rvec,
Mat tvec) |
static boolean |
Calib3d.solvePnP(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat cameraMatrix,
MatOfDouble distCoeffs,
Mat rvec,
Mat tvec,
boolean useExtrinsicGuess,
int flags) |
static boolean |
Calib3d.solvePnPRansac(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat cameraMatrix,
MatOfDouble distCoeffs,
Mat rvec,
Mat tvec) |
static boolean |
Calib3d.solvePnPRansac(MatOfPoint3f objectPoints,
MatOfPoint2f imagePoints,
Mat cameraMatrix,
MatOfDouble distCoeffs,
Mat rvec,
Mat tvec,
boolean useExtrinsicGuess,
int iterationsCount,
float reprojectionError,
double confidence,
Mat inliers,
int flags) |
| Modifier and Type | Method and Description |
|---|---|
static Mat |
Calib3d.initCameraMatrix2D(List<MatOfPoint3f> objectPoints,
List<MatOfPoint2f> imagePoints,
Size imageSize) |
static Mat |
Calib3d.initCameraMatrix2D(List<MatOfPoint3f> objectPoints,
List<MatOfPoint2f> imagePoints,
Size imageSize,
double aspectRatio) |
| Modifier and Type | Method and Description |
|---|---|
static MatOfPoint2f |
MatOfPoint2f.fromNativeAddr(long addr) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Imgproc.approxPolyDP(MatOfPoint2f curve,
MatOfPoint2f approxCurve,
double epsilon,
boolean closed) |
static double |
Imgproc.arcLength(MatOfPoint2f curve,
boolean closed) |
static RotatedRect |
Imgproc.fitEllipse(MatOfPoint2f points) |
static Mat |
Imgproc.getAffineTransform(MatOfPoint2f src,
MatOfPoint2f dst) |
void |
Subdiv2D.getVoronoiFacetList(MatOfInt idx,
List<MatOfPoint2f> facetList,
MatOfPoint2f facetCenters) |
void |
Subdiv2D.insert(MatOfPoint2f ptvec) |
static RotatedRect |
Imgproc.minAreaRect(MatOfPoint2f points) |
static void |
Imgproc.minEnclosingCircle(MatOfPoint2f points,
Point center,
float[] radius) |
static double |
Imgproc.pointPolygonTest(MatOfPoint2f contour,
Point pt,
boolean measureDist) |
| Modifier and Type | Method and Description |
|---|---|
void |
Subdiv2D.getVoronoiFacetList(MatOfInt idx,
List<MatOfPoint2f> facetList,
MatOfPoint2f facetCenters) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Converters.Mat_to_vector_vector_Point2f(Mat m,
List<MatOfPoint2f> pts) |
static Mat |
Converters.vector_vector_Point2f_to_Mat(List<MatOfPoint2f> pts,
List<Mat> mats) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Video.calcOpticalFlowPyrLK(Mat prevImg,
Mat nextImg,
MatOfPoint2f prevPts,
MatOfPoint2f nextPts,
MatOfByte status,
MatOfFloat err) |
static void |
Video.calcOpticalFlowPyrLK(Mat prevImg,
Mat nextImg,
MatOfPoint2f prevPts,
MatOfPoint2f nextPts,
MatOfByte status,
MatOfFloat err,
Size winSize,
int maxLevel) |
static void |
Video.calcOpticalFlowPyrLK(Mat prevImg,
Mat nextImg,
MatOfPoint2f prevPts,
MatOfPoint2f nextPts,
MatOfByte status,
MatOfFloat err,
Size winSize,
int maxLevel,
TermCriteria criteria,
int flags,
double minEigThreshold) |
Copyright © 2018. All rights reserved.