Uses of Class
org.opencv.core.TermCriteria
-
Packages that use TermCriteria Package Description org.opencv.aruco org.opencv.calib3d org.opencv.core org.opencv.features2d org.opencv.imgproc org.opencv.ml org.opencv.video -
-
Uses of TermCriteria in org.opencv.aruco
Methods in org.opencv.aruco with parameters of type TermCriteria Modifier and Type Method Description static double
Aruco. calibrateCameraAruco(List<Mat> corners, Mat ids, Mat counter, Board board, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, int flags, TermCriteria criteria)
It's the same function as #calibrateCameraAruco but without calibration error estimation.static double
Aruco. calibrateCameraArucoExtended(List<Mat> corners, Mat ids, Mat counter, Board board, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, Mat stdDeviationsIntrinsics, Mat stdDeviationsExtrinsics, Mat perViewErrors, int flags, TermCriteria criteria)
Calibrate a camera using aruco markersstatic double
Aruco. calibrateCameraCharuco(List<Mat> charucoCorners, List<Mat> charucoIds, CharucoBoard board, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, int flags, TermCriteria criteria)
It's the same function as #calibrateCameraCharuco but without calibration error estimation.static double
Aruco. calibrateCameraCharucoExtended(List<Mat> charucoCorners, List<Mat> charucoIds, CharucoBoard board, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, Mat stdDeviationsIntrinsics, Mat stdDeviationsExtrinsics, Mat perViewErrors, int flags, TermCriteria criteria)
Calibrate a camera using Charuco corners -
Uses of TermCriteria in org.opencv.calib3d
Methods in org.opencv.calib3d with parameters of type TermCriteria Modifier and Type Method Description static double
Calib3d. calibrateCamera(List<Mat> objectPoints, List<Mat> imagePoints, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, int flags, TermCriteria criteria)
static double
Calib3d. calibrateCameraExtended(List<Mat> objectPoints, List<Mat> imagePoints, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, Mat stdDeviationsIntrinsics, Mat stdDeviationsExtrinsics, Mat perViewErrors, int flags, TermCriteria criteria)
Finds the camera intrinsic and extrinsic parameters from several views of a calibration pattern.static double
Calib3d. calibrateCameraRO(List<Mat> objectPoints, List<Mat> imagePoints, Size imageSize, int iFixedPoint, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, Mat newObjPoints, int flags, TermCriteria criteria)
static double
Calib3d. calibrateCameraROExtended(List<Mat> objectPoints, List<Mat> imagePoints, Size imageSize, int iFixedPoint, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, Mat newObjPoints, Mat stdDeviationsIntrinsics, Mat stdDeviationsExtrinsics, Mat stdDeviationsObjPoints, Mat perViewErrors, int flags, TermCriteria criteria)
Finds the camera intrinsic and extrinsic parameters from several views of a calibration pattern.static double
Calib3d. fisheye_calibrate(List<Mat> objectPoints, List<Mat> imagePoints, Size image_size, Mat K, Mat D, List<Mat> rvecs, List<Mat> tvecs, int flags, TermCriteria criteria)
Performs camera calibarationstatic double
Calib3d. fisheye_stereoCalibrate(List<Mat> objectPoints, List<Mat> imagePoints1, List<Mat> imagePoints2, Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat T, int flags, TermCriteria criteria)
Performs stereo calibrationstatic void
Calib3d. solvePnPRefineLM(Mat objectPoints, Mat imagePoints, Mat cameraMatrix, Mat distCoeffs, Mat rvec, Mat tvec, TermCriteria criteria)
Refine a pose (the translation and the rotation that transform a 3D point expressed in the object coordinate frame to the camera coordinate frame) from a 3D-2D point correspondences and starting from an initial solution.static void
Calib3d. solvePnPRefineVVS(Mat objectPoints, Mat imagePoints, Mat cameraMatrix, Mat distCoeffs, Mat rvec, Mat tvec, TermCriteria criteria)
Refine a pose (the translation and the rotation that transform a 3D point expressed in the object coordinate frame to the camera coordinate frame) from a 3D-2D point correspondences and starting from an initial solution.static void
Calib3d. solvePnPRefineVVS(Mat objectPoints, Mat imagePoints, Mat cameraMatrix, Mat distCoeffs, Mat rvec, Mat tvec, TermCriteria criteria, double VVSlambda)
Refine a pose (the translation and the rotation that transform a 3D point expressed in the object coordinate frame to the camera coordinate frame) from a 3D-2D point correspondences and starting from an initial solution.static double
Calib3d. stereoCalibrate(List<Mat> objectPoints, List<Mat> imagePoints1, List<Mat> imagePoints2, Mat cameraMatrix1, Mat distCoeffs1, Mat cameraMatrix2, Mat distCoeffs2, Size imageSize, Mat R, Mat T, Mat E, Mat F, int flags, TermCriteria criteria)
static double
Calib3d. stereoCalibrateExtended(List<Mat> objectPoints, List<Mat> imagePoints1, List<Mat> imagePoints2, Mat cameraMatrix1, Mat distCoeffs1, Mat cameraMatrix2, Mat distCoeffs2, Size imageSize, Mat R, Mat T, Mat E, Mat F, Mat perViewErrors, int flags, TermCriteria criteria)
Calibrates a stereo camera set up.static void
Calib3d. undistortPointsIter(Mat src, Mat dst, Mat cameraMatrix, Mat distCoeffs, Mat R, Mat P, TermCriteria criteria)
Note: Default version of #undistortPoints does 5 iterations to compute undistorted points. -
Uses of TermCriteria in org.opencv.core
Methods in org.opencv.core that return TermCriteria Modifier and Type Method Description TermCriteria
TermCriteria. clone()
Methods in org.opencv.core with parameters of type TermCriteria Modifier and Type Method Description static double
Core. kmeans(Mat data, int K, Mat bestLabels, TermCriteria criteria, int attempts, int flags)
Finds centers of clusters and groups input samples around the clusters.static double
Core. kmeans(Mat data, int K, Mat bestLabels, TermCriteria criteria, int attempts, int flags, Mat centers)
Finds centers of clusters and groups input samples around the clusters. -
Uses of TermCriteria in org.opencv.features2d
Constructors in org.opencv.features2d with parameters of type TermCriteria Constructor Description BOWKMeansTrainer(int clusterCount, TermCriteria termcrit)
The constructor.BOWKMeansTrainer(int clusterCount, TermCriteria termcrit, int attempts)
The constructor.BOWKMeansTrainer(int clusterCount, TermCriteria termcrit, int attempts, int flags)
The constructor. -
Uses of TermCriteria in org.opencv.imgproc
Methods in org.opencv.imgproc with parameters of type TermCriteria Modifier and Type Method Description static void
Imgproc. cornerSubPix(Mat image, Mat corners, Size winSize, Size zeroZone, TermCriteria criteria)
Refines the corner locations.static void
Imgproc. pyrMeanShiftFiltering(Mat src, Mat dst, double sp, double sr, int maxLevel, TermCriteria termcrit)
Performs initial step of meanshift segmentation of an image. -
Uses of TermCriteria in org.opencv.ml
Methods in org.opencv.ml that return TermCriteria Modifier and Type Method Description TermCriteria
ANN_MLP. getTermCriteria()
SEE: setTermCriteriaTermCriteria
EM. getTermCriteria()
SEE: setTermCriteriaTermCriteria
LogisticRegression. getTermCriteria()
SEE: setTermCriteriaTermCriteria
RTrees. getTermCriteria()
SEE: setTermCriteriaTermCriteria
SVM. getTermCriteria()
SEE: setTermCriteriaTermCriteria
SVMSGD. getTermCriteria()
SEE: setTermCriteriaMethods in org.opencv.ml with parameters of type TermCriteria Modifier and Type Method Description void
ANN_MLP. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteriavoid
EM. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteriavoid
LogisticRegression. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteriavoid
RTrees. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteriavoid
SVM. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteriavoid
SVMSGD. setTermCriteria(TermCriteria val)
getTermCriteria SEE: getTermCriteria -
Uses of TermCriteria in org.opencv.video
Methods in org.opencv.video that return TermCriteria Modifier and Type Method Description TermCriteria
SparsePyrLKOpticalFlow. getTermCriteria()
Methods in org.opencv.video with parameters of type TermCriteria Modifier and Type Method Description static void
Video. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria)
Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static void
Video. calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags)
Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.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)
Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids.static RotatedRect
Video. CamShift(Mat probImage, Rect window, TermCriteria criteria)
Finds an object center, size, and orientation.static SparsePyrLKOpticalFlow
SparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit)
static SparsePyrLKOpticalFlow
SparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit, int flags)
static SparsePyrLKOpticalFlow
SparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit, int flags, double minEigThreshold)
static double
Video. findTransformECC(Mat templateImage, Mat inputImage, Mat warpMatrix, int motionType, TermCriteria criteria)
static double
Video. findTransformECC(Mat templateImage, Mat inputImage, Mat warpMatrix, int motionType, TermCriteria criteria, Mat inputMask)
static double
Video. findTransformECC(Mat templateImage, Mat inputImage, Mat warpMatrix, int motionType, TermCriteria criteria, Mat inputMask, int gaussFiltSize)
Finds the geometric transform (warp) between two images in terms of the ECC criterion CITE: EP08 .static int
Video. meanShift(Mat probImage, Rect window, TermCriteria criteria)
Finds an object on a back projection image.void
SparsePyrLKOpticalFlow. setTermCriteria(TermCriteria crit)
-