Searched defs:pImage (Results 1 - 5 of 5) sorted by relevance

/external/opencv/cvaux/src/
H A D_cvvectrack.h149 IplImage* pImage; local
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...]
H A D_cvfacedetection.h357 IplImage* pImage; local
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...]
H A Dcvsegment.cpp84 icvSegmFloodFill_Stage1( uchar* pImage, int step, argument
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, argument
211 uchar* img = pImage + step * rect.y + rect.x * 3;
H A Dcvlee.cpp1329 CV_IMPL int cvVoronoiDiagramFromImage(IplImage* pImage, argument
1358 if(!pImage)
1361 if(pImage->nChannels != 1 || pImage->depth != 8)
1369 case CV_LEE_ERODE: image_size.width = pImage->width;
1370 image_size.height = pImage->height;
1372 cvErode(pImage,pWorkImage,0,1);
1375 case CV_LEE_ZOOM: image_size.width = multiplicator*pImage->width;
1376 image_size.height = multiplicator*pImage->height;
1378 cvResize(pImage, pWorkImag
[all...]
/external/opencv/cv/src/
H A Dcvfloodfill.cpp95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed, argument
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, argument
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, argument
378 uchar* img = pImage + step*seed.y;
481 img = pImage
679 icvFloodFill_Grad_32f_CnIR( float* pImage, int step, uchar* pMask, int maskStep, CvSize , CvPoint seed, float* _newVal, float* _d_lw, float* _d_up, CvConnectedComp* region, int flags, CvFFillSegment* buffer, int buffer_size, int cn ) argument
[all...]

Completed in 114 milliseconds