HomeSort by relevance Sort by last modified time
    Searched full:distorted (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/opencv3/modules/java/src/
calib3d+Calib3d.java 93 // C++: void distortPoints(Mat undistorted, Mat& distorted, Mat K, Mat D, double alpha = 0)
96 //javadoc: distortPoints(undistorted, distorted, K, D, alpha)
97 public static void distortPoints(Mat undistorted, Mat distorted, Mat K, Mat D, double alpha)
100 distortPoints_0(undistorted.nativeObj, distorted.nativeObj, K.nativeObj, D.nativeObj, alpha);
105 //javadoc: distortPoints(undistorted, distorted, K, D)
106 public static void distortPoints(Mat undistorted, Mat distorted, Mat K, Mat D)
109 distortPoints_1(undistorted.nativeObj, distorted.nativeObj, K.nativeObj, D.nativeObj);
116 // C++: void undistortPoints(Mat distorted, Mat& undistorted, Mat K, Mat D, Mat R = Mat(), Mat P = Mat())
119 //javadoc: undistortPoints(distorted, undistorted, K, D, R, P)
120 public static void undistortPoints(Mat distorted, Mat undistorted, Mat K, Mat D, Mat R, Mat P
    [all...]
calib3d.cpp 1240 Mat& distorted = *((Mat*)distorted_nativeObj); local
1264 Mat& distorted = *((Mat*)distorted_nativeObj); local
1291 Mat& distorted = *((Mat*)distorted_nativeObj); local
1317 Mat& distorted = *((Mat*)distorted_nativeObj); local
1376 Mat& distorted = *((Mat*)distorted_nativeObj); local
1402 Mat& distorted = *((Mat*)distorted_nativeObj); local
    [all...]
  /external/opencv3/doc/py_tutorials/py_calib3d/py_calibration/
py_calibration.markdown 27 \f[x_{distorted} = x( 1 + k_1 r^2 + k_2 r^4 + k_3 r^6) \\
28 y_{distorted} = y( 1 + k_1 r^2 + k_2 r^4 + k_3 r^6)\f]
34 \f[x_{distorted} = x + [ 2p_1xy + p_2(r^2+2x^2)] \\
35 y_{distorted} = y + [ p_1(r^2+ 2y^2)+ 2p_2xy]\f]
184 This is curved path. First find a mapping function from distorted image to undistorted image. Then
  /external/opencv3/doc/tutorials/calib3d/camera_calibration/
camera_calibration.markdown 17 \f[x_{distorted} = x( 1 + k_1 r^2 + k_2 r^4 + k_3 r^6) \\
18 y_{distorted} = y( 1 + k_1 r^2 + k_2 r^4 + k_3 r^6)\f]
20 So for an undistorted pixel point at \f$(x,y)\f$ coordinates, its position on the distorted image
21 will be \f$(x_{distorted} y_{distorted})\f$. The presence of the radial distortion manifests in form
27 \f[x_{distorted} = x + [ 2p_1xy + p_2(r^2+2x^2)] \\
28 y_{distorted} = y + [ p_1(r^2+ 2y^2)+ 2p_2xy]\f]
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
external_media_test.cc 47 TEST_LOG("Speak and verify your voice is distorted.\n");
  /external/opencv3/modules/calib3d/src/
fisheye.cpp 250 void cv::fisheye::distortPoints(InputArray undistorted, OutputArray distorted, InputArray K, InputArray D, double alpha)
254 distorted.create(undistorted.size(), undistorted.type());
277 Vec2f *xpf = distorted.getMat().ptr<Vec2f>();
278 Vec2d *xpd = distorted.getMat().ptr<Vec2d>();
312 void cv::fisheye::undistortPoints( InputArray distorted, OutputArray undistorted, InputArray K, InputArray D, InputArray R, InputArray P)
315 CV_Assert(distorted.type() == CV_32FC2 || distorted.type() == CV_64FC2);
316 undistorted.create(distorted.size(), distorted.type());
356 const cv::Vec2f* srcf = distorted.getMat().ptr<cv::Vec2f>()
    [all...]
  /external/opencv3/modules/calib3d/test/
test_fisheye.cpp 107 cv::Mat distorted = cv::imread(file), undistorted; local
111 cv::fisheye::undistortImage(distorted, undistorted, K, D, newK);
120 cv::fisheye::estimateNewCameraMatrixForUndistortRectify(K, D, distorted.size(), cv::noArray(), newK, balance);
121 cv::fisheye::undistortImage(distorted, undistorted, K, D, newK);
131 cv::fisheye::estimateNewCameraMatrixForUndistortRectify(K, D, distorted.size(), cv::noArray(), newK, balance);
132 cv::fisheye::undistortImage(distorted, undistorted, K, D, newK);
test_undistort.cpp 203 test_array[OUTPUT].push_back(NULL); // distorted dst points
612 test_array[OUTPUT].push_back(NULL); // distorted dst points
    [all...]
  /external/aac/libAACdec/src/
rvlc.h 101 /* within RVLC in case of distorted bitstreams. */
aacdec_hcr_types.h 220 // in case of distorted bitstreams. Table of all known errors:
  /external/opencv3/doc/py_tutorials/py_imgproc/py_houghlines/
py_houghlines.markdown 16 mathematical form. It can detect the shape even if it is broken or distorted a little bit. We will
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp 165 The distorted point coordinates are [x'; y'] where
467 means that you can compute the distorted coordinates for a sparse set of points or apply a
    [all...]
  /external/ImageMagick/MagickCore/
distort.c 341 % o image: the image to be distorted.
762 This determines what part of the distorted image is 'ground'
    [all...]
resample.c 177 % calculations to produce a distorted scaling of the source image for each
    [all...]
  /external/ImageMagick/ImageMagick/api/
distort.html 112 <dd>the image to be distorted. </dd>
  /external/ImageMagick/config/
thresholds.xml 252 can generate distorted circles in such areas.
  /external/ImageMagick/www/api/
distort.html 116 <dd>the image to be distorted. </dd>
distort.php 112 <dd>the image to be distorted. </dd>
  /external/ImageMagick/www/source/
thresholds.xml 252 can generate distorted circles in such areas.
  /external/opencv3/doc/tutorials/objdetect/
traincascade.markdown 109 randomly distorted versions of the object.
  /frameworks/base/docs/html/topic/performance/
network-xfer.jd 316 other words, this project attempts to quantify how distorted your compressed
  /hardware/libhardware/include/hardware/
gps.h     [all...]
  /prebuilts/go/darwin-x86/src/os/
os_test.go 932 // so that timings are not distorted by latency and caching.
946 // so that timings are not distorted by latency and caching.
    [all...]
  /prebuilts/go/linux-x86/src/os/
os_test.go 932 // so that timings are not distorted by latency and caching.
946 // so that timings are not distorted by latency and caching.
    [all...]
  /external/ImageMagick/ImageMagick/script/
escape.html 555 >-distort</a> operator will use to modify its behavior (distorted output

Completed in 1127 milliseconds

1 2 3