Home | History | Annotate | Download | only in test

Lines Matching defs:distCoeffs

1152         Mat distCoeffs = new Mat();
1157 Imgproc.initUndistortRectifyMap(cameraMatrix, distCoeffs, R, newCameraMatrix, size, CvType.CV_32F, map1, map2);
1163 Mat distCoeffs = new Mat(1, 4, CvType.CV_32F);
1170 distCoeffs.put(0, 0, 1, 3, 2, 4);
1176 // Imgproc.initWideAngleProjMap(cameraMatrix, distCoeffs, imageSize,
1760 Mat distCoeffs = new Mat(1, 4, CvType.CV_32F) {
1766 Imgproc.undistort(src, dst, cameraMatrix, distCoeffs);
1787 Mat distCoeffs = new Mat(1, 4, CvType.CV_32F) {
1794 Imgproc.undistort(src, dst, cameraMatrix, distCoeffs, newCameraMatrix);
1800 //undistortPoints(List<Point> src, List<Point> dst, Mat cameraMatrix, Mat distCoeffs)
1805 Mat distCoeffs = new Mat(8, 1, CvType.CV_64FC1, new Scalar(0));
1807 Imgproc.undistortPoints(src, dst, cameraMatrix, distCoeffs);