Home | History | Annotate | Download | only in opencv2

Lines Matching refs:imagePoints

448 @param imagePoints Output array of image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel, or
473 OutputArray imagePoints,
481 @param imagePoints Array of corresponding image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel,
496 of squared distances between the observed projections imagePoints and the projected (using
525 it as, e.g., imagePoints, one must effectively copy it into a new array: imagePoints =
528 CV_EXPORTS_W bool solvePnP( InputArray objectPoints, InputArray imagePoints,
537 @param imagePoints Array of corresponding image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel,
554 @param inliers Output vector that contains indices of inliers in objectPoints and imagePoints .
560 projections imagePoints and the projected (using projectPoints ) objectPoints. The use of RANSAC
567 CV_EXPORTS_W bool solvePnPRansac( InputArray objectPoints, InputArray imagePoints,
579 @param imagePoints Vector of vectors of the projections of the calibration pattern points. In the
590 InputArrayOfArrays imagePoints,
710 @param imagePoints In the new interface it is a vector of vectors of the projections of calibration
711 pattern points (e.g. std::vector<std::vector<cv::Vec2f>>). imagePoints.size() and
712 objectPoints.size() and imagePoints[i].size() must be equal to objectPoints[i].size() for each i.
779 that is, the total sum of squared distances between the observed feature points imagePoints and
796 InputArrayOfArrays imagePoints, Size imageSize,
1646 @param imagePoints Output array of image points, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel, or
1662 CV_EXPORTS void projectPoints(InputArray objectPoints, OutputArray imagePoints, const Affine3d& affine,
1666 CV_EXPORTS_W void projectPoints(InputArray objectPoints, OutputArray imagePoints, InputArray rvec, InputArray tvec,
1762 @param imagePoints vector of vectors of the projections of calibration pattern points.
1763 imagePoints.size() and objectPoints.size() and imagePoints[i].size() must be equal to
1789 CV_EXPORTS_W double calibrate(InputArrayOfArrays objectPoints, InputArrayOfArrays imagePoints, const Size& image_size,