OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isz
(Results
1 - 3
of
3
) sorted by null
/external/opencv/cv/src/
cvutils.cpp
115
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
...]
cvtemplmatch.cpp
206
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
.width
[
all
...]
cvlkpyramid.cpp
451
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
.width + minJ.x - minI.x + 1
[
all
...]
Completed in 622 milliseconds