Searched refs:isz (Results 1 - 3 of 3) sorted by relevance

/external/opencv/cv/src/
H A Dcvutils.cpp115 const int isz = (int)sizeof(int); local
150 if( (cn | srcstep | dststep | (size_t)src | (size_t)dst) % isz == 0 )
155 cn /= isz;
156 srcstep /= isz;
157 dststep /= isz;
205 const int isz = (int)sizeof(int); local
210 if( (cn | srcstep | dststep | (size_t)src | (size_t)dst) % isz == 0 )
212 cn /= isz;
213 srcstep /= isz;
214 dststep /= isz;
338 const int isz = (int)sizeof(int); local
[all...]
H A Dcvtemplmatch.cpp206 CvSize csz = { blocksize.width, blocksize.height }, isz; local
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
[all...]
H A Dcvlkpyramid.cpp451 CvSize isz, jsz; local
487 isz = jsz = cvSize(maxI.x - minI.x + 2, maxI.y - minI.y + 2);
491 if( isz.width < 3 || isz.height < 3 ||
493 patchI, isz.width*sizeof(patchI[0]), isz, u ) < 0 )
500 icvCalcIxIy_32f( patchI, isz.width*sizeof(patchI[0]), Ix, Iy,
501 (isz.width-2)*sizeof(patchI[0]), isz, smoothKernel, patchJ );
537 (y + minJ.y - minI.y + 1)*isz
[all...]

Completed in 120 milliseconds