OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pImage
(Results
1 - 6
of
6
) sorted by null
/external/opencv/cvaux/src/
_cvvectrack.h
149
IplImage*
pImage
;
152
pImage
= *ppImage;
153
if(
pImage
!= NULL )
155
if (
pImage
->width != sz.width ||
pImage
->height != sz.height ||
pImage
->nChannels != lChNum)
156
cvReleaseImage( &
pImage
);
158
if(
pImage
== NULL )
159
pImage
= cvCreateImage( sz, IPL_DEPTH_8U, lChNum);
160
*ppImage =
pImage
;
[
all
...]
_cvfacedetection.h
357
IplImage*
pImage
;
360
pImage
= *ppImage;
361
if(
pImage
!= NULL )
363
if (
pImage
->width != sz.width ||
pImage
->height != sz.height ||
pImage
->nChannels != lChNum)
364
cvReleaseImage( &
pImage
);
366
if(
pImage
== NULL )
367
pImage
= cvCreateImage( sz, IPL_DEPTH_8U, lChNum);
368
*ppImage =
pImage
;
[
all
...]
cvsegment.cpp
84
icvSegmFloodFill_Stage1( uchar*
pImage
, int step,
91
uchar* img =
pImage
+ step * seed.y;
103
img =
pImage
+ seed.y*step;
145
img =
pImage
+ (YC + flag) * step;
170
img =
pImage
+ YC * step;
206
icvSegmFloodFill_Stage2( uchar*
pImage
, int step,
211
uchar* img =
pImage
+ step * rect.y + rect.x * 3;
cvlee.cpp
[
all
...]
/external/opencv/cv/src/
cvfloodfill.cpp
95
icvFloodFill_8u_CnIR( uchar*
pImage
, int step, CvSize roi, CvPoint seed,
99
uchar* img =
pImage
+ step * seed.y;
167
img =
pImage
+ (YC + dir) * step;
227
icvFloodFill_32f_CnIR( int*
pImage
, int step, CvSize roi, CvPoint seed,
231
int* img =
pImage
+ (step /= sizeof(
pImage
[0])) * seed.y;
299
img =
pImage
+ (YC + dir) * step;
373
icvFloodFill_Grad_8u_CnIR( uchar*
pImage
, int step, uchar* pMask, int maskStep,
378
uchar* img =
pImage
+ step*seed.y;
481
img =
pImage
+ (YC + dir) * step
[
all
...]
/external/opencv/cvaux/include/
cvaux.h
[
all
...]
Completed in 98 milliseconds