Home
last modified time | relevance | path

Searched refs:getOptimalDFTSize (Results 1 – 15 of 15) sorted by relevance

/external/opencv3/samples/cpp/
Ddft.cpp38 int M = getOptimalDFTSize( img.rows ); in main()
39 int N = getOptimalDFTSize( img.cols ); in main()
/external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
Ddiscrete_fourier_transform.cpp31 int m = getOptimalDFTSize( I.rows ); in main()
32 int n = getOptimalDFTSize( I.cols ); // on the border add zero values in main()
/external/opencv3/samples/python2/
Ddft.py69 dft_M = cv2.getOptimalDFTSize(w)
70 dft_N = cv2.getOptimalDFTSize(h)
Dmosse.py53 w, h = map(cv2.getOptimalDFTSize, [x2-x1, y2-y1])
/external/opencv3/doc/tutorials/core/discrete_fourier_transform/
Ddiscrete_fourier_transform.markdown12 cv::getOptimalDFTSize() , @ref cv::log() and @ref cv::normalize() .
55 to the image to get a size with such traits. The @ref cv::getOptimalDFTSize() returns this
60 int m = getOptimalDFTSize( I.rows );
61 int n = getOptimalDFTSize( I.cols ); // on the border add zero pixels
/external/opencv3/modules/cudaarithm/test/
Dtest_arithm.cpp326 dftSize.width = cv::getOptimalDFTSize(A.cols + B.cols - 1); in convolveDFT()
327 dftSize.height = cv::getOptimalDFTSize(A.rows + B.rows - 1); in convolveDFT()
/external/opencv3/doc/py_tutorials/py_imgproc/py_transforms/py_fourier_transform/
Dpy_fourier_transform.markdown183 So how do we find this optimal size ? OpenCV provides a function, **cv2.getOptimalDFTSize()** for
192 In [19]: nrows = cv2.getOptimalDFTSize(rows)
193 In [20]: ncols = cv2.getOptimalDFTSize(cols)
/external/opencv3/modules/cudaarithm/src/
Darithm.cpp440 dft_size.width = getOptimalDFTSize(block_size.width + templ_size.width - 1); in create()
442 dft_size.height = getOptimalDFTSize(block_size.height + templ_size.height - 1); in create()
/external/opencv3/modules/imgproc/src/
Dtemplmatch.cpp145 dft_size.width = std::max(getOptimalDFTSize(block_size.width + templ_size.width - 1), 2); in create()
146 dft_size.height = getOptimalDFTSize(block_size.height + templ_size.height - 1); in create()
674 dftsize.width = std::max(getOptimalDFTSize(blocksize.width + templ.cols - 1), 2); in crossCorr()
675 dftsize.height = getOptimalDFTSize(blocksize.height + templ.rows - 1); in crossCorr()
Dphasecorr.cpp507 int M = getOptimalDFTSize(src1.rows); in phaseCorrelate()
508 int N = getOptimalDFTSize(src1.cols); in phaseCorrelate()
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java631 assertEquals(1, Core.getOptimalDFTSize(0)); in testGetOptimalDFTSize()
632 assertEquals(135, Core.getOptimalDFTSize(133)); in testGetOptimalDFTSize()
633 assertEquals(15, Core.getOptimalDFTSize(13)); in testGetOptimalDFTSize()
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp2118 CV_EXPORTS_W int getOptimalDFTSize(int vecsize);
/external/opencv3/modules/core/src/
Ddxt.cpp2086 if (ssize.area() != getOptimalDFTSize(ssize.area())) in ocl_dft()
2373 if (ssize.area() != getOptimalDFTSize(ssize.area())) in ocl_dft_amdfft()
3790 int cv::getOptimalDFTSize( int size0 ) in getOptimalDFTSize() function in cv
3860 return cv::getOptimalDFTSize(size0); in cvGetOptimalDFTSize()
/external/opencv3/modules/java/src/
Dcore+Core.java267 public static int getOptimalDFTSize(int vecsize) in getOptimalDFTSize() method in Core
Dcore.cpp189 int _retval_ = cv::getOptimalDFTSize( (int)vecsize ); in Java_org_opencv_core_Core_getOptimalDFTSize_10()