Home | History | Annotate | Download | only in src

Lines Matching defs:isz

206         CvSize csz = { blocksize.width, blocksize.height }, isz;
211 isz.width = csz.width + templ->cols - 1;
212 isz.height = csz.height + templ->rows - 1;
213 x2 = MIN( img->cols, x0 + isz.width );
214 y2 = MIN( img->rows, y0 + isz.height );
223 cvRect(0,0,isz.width,isz.height) );
226 if( x2 - x1 < isz.width || y2 - y1 < isz.height )
246 if( dftsize.width > isz.width )
248 cvGetSubRect( _dft_img, dst, cvRect(isz.width, 0,
249 dftsize.width - isz.width,dftsize.height) );
253 cvDFT( _dft_img, _dft_img, CV_DXT_FORWARD, isz.height );