/external/opencv3/modules/cudaarithm/src/ |
arithm.cpp | 291 void cv::cuda::dft(InputArray _src, OutputArray _dst, Size dft_size, int flags, Stream& stream) 296 (void) dft_size; 308 const bool is_1d_input = (dft_size.height == 1) || (dft_size.width == 1); 333 Size dft_size_opt = dft_size; 337 dft_size_opt.width = std::max(dft_size.width, dft_size.height); 338 dft_size_opt.height = std::min(dft_size.width, dft_size.height); 359 createContinuous(dft_size, CV_32FC2, _dst) [all...] |
/external/opencv3/modules/core/test/ocl/ |
test_dft.cpp | 67 cv::Size dft_size; local 77 dft_size = GET_PARAM(0); 97 is1d = (dft_flags & DFT_ROWS) != 0 || dft_size.height == 1; 102 src = randomMat(dft_size, CV_MAKE_TYPE(depth, cn), 0.0, 100.0);
|
/external/opencv3/modules/imgproc/src/ |
templmatch.cpp | 113 int dft_size = 18; local 114 return size.height < dft_size && size.width < dft_size; 122 Size dft_size; member in struct:cv::ConvolveBuf 145 dft_size.width = std::max(getOptimalDFTSize(block_size.width + templ_size.width - 1), 2); 146 dft_size.height = getOptimalDFTSize(block_size.height + templ_size.height - 1); 147 if( dft_size.width <= 0 || dft_size.height <= 0 ) 151 block_size.width = dft_size.width - templ_size.width + 1; 153 block_size.height = dft_size.height - templ_size.height + 1 184 Size& dft_size = buf.dft_size; local [all...] |
/external/opencv3/modules/core/src/ |
dxt.cpp | [all...] |
/external/opencv3/modules/cudaarithm/include/opencv2/ |
cudaarithm.hpp | [all...] |