Home
last modified time | relevance | path

Searched refs:idft (Results 1 – 10 of 10) sorted by relevance

/external/opencv3/samples/python2/
Dmosse.py98 f = cv2.idft(self.H, flags=cv2.DFT_SCALE | cv2.DFT_REAL_OUTPUT )
126 resp = cv2.idft(C, flags=cv2.DFT_SCALE | cv2.DFT_REAL_OUTPUT)
Ddeconvolution.py109 res = cv2.idft(RES, flags=cv2.DFT_SCALE | cv2.DFT_REAL_OUTPUT )
/external/opencv3/doc/py_tutorials/py_imgproc/py_transforms/py_fourier_transform/
Dpy_fourier_transform.markdown11 - We will see following functions : **cv2.dft()**, **cv2.idft()** etc
115 OpenCV provides the functions **cv2.dft()** and **cv2.idft()** for this. It returns the same result
156 img_back = cv2.idft(f_ishift)
169 @note As usual, OpenCV functions **cv2.dft()** and **cv2.idft()** are faster than Numpy
/external/opencv3/modules/imgproc/src/
Dphasecorr.cpp549 idft(C, C); // gives us the nice peak shift location... in phaseCorrelate()
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp2024 CV_EXPORTS_W void idft(InputArray src, OutputArray dst, int flags = 0, int nonzeroRows = 0);
/external/opencv3/modules/java/src/
Dcore+Core.java2078 public static void idft(Mat src, Mat dst, int flags, int nonzeroRows) in idft() method in Core
2087 public static void idft(Mat src, Mat dst) in idft() method in Core
Dcore.cpp3951 cv::idft( src, dst, (int)flags, (int)nonzeroRows ); in Java_org_opencv_core_Core_idft_10()
3973 cv::idft( src, dst ); in Java_org_opencv_core_Core_idft_11()
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java707 Core.idft(in, dst); in testIdftMatMat()
726 Core.idft(in, dst, Core.DFT_REAL_OUTPUT, 1); in testIdftMatMatIntInt()
/external/opencv3/modules/core/test/
Dtest_dxt.cpp692 cv::idft(src, dst, flags & ~CV_DXT_INVERSE); in run_func()
/external/opencv3/modules/core/src/
Ddxt.cpp2904 void cv::idft( InputArray src, OutputArray dst, int flags, int nonzero_rows ) in idft() function in cv