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 doubleAruco. 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 doubleAruco. 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 doubleAruco. 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 doubleAruco. 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 doubleCalib3d. calibrateCamera(List<Mat> objectPoints, List<Mat> imagePoints, Size imageSize, Mat cameraMatrix, Mat distCoeffs, List<Mat> rvecs, List<Mat> tvecs, int flags, TermCriteria criteria)static doubleCalib3d. 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 doubleCalib3d. 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 doubleCalib3d. 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 doubleCalib3d. 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 doubleCalib3d. 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 voidCalib3d. 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 voidCalib3d. 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 voidCalib3d. 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 doubleCalib3d. 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 doubleCalib3d. 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 voidCalib3d. 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 TermCriteriaTermCriteria. clone()Methods in org.opencv.core with parameters of type TermCriteria Modifier and Type Method Description static doubleCore. 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 doubleCore. 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 voidImgproc. cornerSubPix(Mat image, Mat corners, Size winSize, Size zeroZone, TermCriteria criteria)Refines the corner locations.static voidImgproc. 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 TermCriteriaANN_MLP. getTermCriteria()SEE: setTermCriteriaTermCriteriaEM. getTermCriteria()SEE: setTermCriteriaTermCriteriaLogisticRegression. getTermCriteria()SEE: setTermCriteriaTermCriteriaRTrees. getTermCriteria()SEE: setTermCriteriaTermCriteriaSVM. getTermCriteria()SEE: setTermCriteriaTermCriteriaSVMSGD. getTermCriteria()SEE: setTermCriteriaMethods in org.opencv.ml with parameters of type TermCriteria Modifier and Type Method Description voidANN_MLP. setTermCriteria(TermCriteria val)getTermCriteria SEE: getTermCriteriavoidEM. setTermCriteria(TermCriteria val)getTermCriteria SEE: getTermCriteriavoidLogisticRegression. setTermCriteria(TermCriteria val)getTermCriteria SEE: getTermCriteriavoidRTrees. setTermCriteria(TermCriteria val)getTermCriteria SEE: getTermCriteriavoidSVM. setTermCriteria(TermCriteria val)getTermCriteria SEE: getTermCriteriavoidSVMSGD. 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 TermCriteriaSparsePyrLKOpticalFlow. getTermCriteria()Methods in org.opencv.video with parameters of type TermCriteria Modifier and Type Method Description static voidVideo. 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 voidVideo. 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 voidVideo. 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 RotatedRectVideo. CamShift(Mat probImage, Rect window, TermCriteria criteria)Finds an object center, size, and orientation.static SparsePyrLKOpticalFlowSparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit)static SparsePyrLKOpticalFlowSparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit, int flags)static SparsePyrLKOpticalFlowSparsePyrLKOpticalFlow. create(Size winSize, int maxLevel, TermCriteria crit, int flags, double minEigThreshold)static doubleVideo. findTransformECC(Mat templateImage, Mat inputImage, Mat warpMatrix, int motionType, TermCriteria criteria)static doubleVideo. findTransformECC(Mat templateImage, Mat inputImage, Mat warpMatrix, int motionType, TermCriteria criteria, Mat inputMask)static doubleVideo. 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 intVideo. meanShift(Mat probImage, Rect window, TermCriteria criteria)Finds an object on a back projection image.voidSparsePyrLKOpticalFlow. setTermCriteria(TermCriteria crit)
-