HomeSort by relevance Sort by last modified time
    Searched full:undistort (Results 1 - 20 of 20) sorted by null

  /external/opencv3/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/
OnCameraFrameRender.java 53 Imgproc.undistort(inputFrame.rgba(), renderedFrame,
74 Imgproc.undistort(inputFrame.rgba(), undistortedFrame,
  /external/opencv3/doc/py_tutorials/py_calib3d/py_calibration/
py_calibration.markdown 9 - We will learn to find these parameters, undistort images etc.
157 We have got what we were trying. Now we can take an image and undistort it. OpenCV comes with two
170 #### 1. Using **cv2.undistort()**
174 # undistort
175 dst = cv2.undistort(img, mtx, dist, None, newcameramtx)
187 # undistort
  /external/opencv/cvaux/src/
cvcalibfilter.cpp 827 bool CvCalibFilter::Undistort( IplImage** srcarr, IplImage** dstarr )
829 return Undistort( (CvMat**)srcarr, (CvMat**)dstarr );
833 bool CvCalibFilter::Undistort( CvMat** srcarr, CvMat** dstarr )
  /external/opencv3/doc/tutorials/calib3d/camera_calibration/
camera_calibration.markdown 144 correct the image using @ref cv::undistort function:
153 Taking advantage of this now I'll expand the @ref cv::undistort function, which is in fact first
  /external/opencv3/modules/imgproc/src/
undistort.cpp 170 void cv::undistort( InputArray _src, OutputArray _dst, InputArray _cameraMatrix, function in class:cv
225 cv::undistort( src, dst, A, distCoeffs, newA );
  /external/opencv3/samples/cpp/
calibration.cpp 524 undistort(temp, view, cameraMatrix, distCoeffs);
568 //undistort( view, rview, cameraMatrix, distCoeffs, cameraMatrix );
  /external/opencv3/modules/calib3d/test/
test_undistort_badarg.cpp 449 cv::undistort(src,dst,camera_mat,distortion_coeffs,new_camera_mat);
test_undistort.cpp 810 //Applying precalculated undistort rectify map
867 //Applying precalculated undistort rectify map
    [all...]
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 793 ////////////////////////////// undistort /////////////////////////////////
867 cv::undistort(input0,input_output,input1,cv::Mat());
871 cv::undistort(input0,input_output,input1,input2);
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 1726 public static void undistort(Mat src, Mat dst, Mat cameraMatrix, Mat distCoeffs, Mat newCameraMatrix) method in class:Imgproc
1735 public static void undistort(Mat src, Mat dst, Mat cameraMatrix, Mat distCoeffs) method in class:Imgproc
    [all...]
imgproc.cpp     [all...]
  /external/opencv/cvaux/include/
cvaux.h     [all...]
  /development/perftests/panorama/feature_stab/src/dbreg/
dbreg.h 420 Create look-up tables to undistort images. Only Bougeut (Matlab toolkit)
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 357 undistort(temp, view, cameraMatrix, distCoeffs);
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 420 Create look-up tables to undistort images. Only Bougeut (Matlab toolkit)
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java     [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp 332 //! cv::undistort mode
    [all...]
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp     [all...]
  /external/opencv3/
Android.mk 745 modules/imgproc/src/undistort.cpp \
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 277 @see cv::undistort
    [all...]

Completed in 2046 milliseconds