Searched refs:getOptimalDFTSize (Results 1 – 15 of 15) sorted by relevance
/external/opencv3/samples/cpp/ |
D | dft.cpp | 38 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/ |
D | discrete_fourier_transform.cpp | 31 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/ |
D | dft.py | 69 dft_M = cv2.getOptimalDFTSize(w) 70 dft_N = cv2.getOptimalDFTSize(h)
|
D | mosse.py | 53 w, h = map(cv2.getOptimalDFTSize, [x2-x1, y2-y1])
|
/external/opencv3/doc/tutorials/core/discrete_fourier_transform/ |
D | discrete_fourier_transform.markdown | 12 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/ |
D | test_arithm.cpp | 326 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/ |
D | py_fourier_transform.markdown | 183 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/ |
D | arithm.cpp | 440 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/ |
D | templmatch.cpp | 145 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()
|
D | phasecorr.cpp | 507 int M = getOptimalDFTSize(src1.rows); in phaseCorrelate() 508 int N = getOptimalDFTSize(src1.cols); in phaseCorrelate()
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 631 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/ |
D | core.hpp | 2118 CV_EXPORTS_W int getOptimalDFTSize(int vecsize);
|
/external/opencv3/modules/core/src/ |
D | dxt.cpp | 2086 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/ |
D | core+Core.java | 267 public static int getOptimalDFTSize(int vecsize) in getOptimalDFTSize() method in Core
|
D | core.cpp | 189 int _retval_ = cv::getOptimalDFTSize( (int)vecsize ); in Java_org_opencv_core_Core_getOptimalDFTSize_10()
|