OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dftsize
(Results
1 - 1
of
1
) sorted by null
/external/opencv/cv/src/
cvtemplmatch.cpp
61
CvSize
dftsize
, blocksize;
local
119
dftsize
.width = cvGetOptimalDFTSize(blocksize.width + templ->cols - 1);
120
if(
dftsize
.width == 1 )
121
dftsize
.width = 2;
122
dftsize
.height = cvGetOptimalDFTSize(blocksize.height + templ->rows - 1);
123
if(
dftsize
.width <= 0 ||
dftsize
.height <= 0 )
127
blocksize.width =
dftsize
.width - templ->cols + 1;
129
blocksize.height =
dftsize
.height - templ->rows + 1;
132
CV_CALL( dft_templ = cvCreateMat(
dftsize
.height*templ_cn, dftsize.width, max_depth ))
[
all
...]
Completed in 1224 milliseconds