Home
last modified time | relevance | path

Searched refs:pImage (Results 1 – 8 of 8) sorted by relevance

/external/opencv/cvaux/src/
D_cvvectrack.h149 IplImage* pImage; in ReallocImage() local
152 pImage = *ppImage; in ReallocImage()
153 if( pImage != NULL ) in ReallocImage()
155 if (pImage->width != sz.width || pImage->height != sz.height || pImage->nChannels != lChNum) in ReallocImage()
156 cvReleaseImage( &pImage ); in ReallocImage()
158 if( pImage == NULL ) in ReallocImage()
159 pImage = cvCreateImage( sz, IPL_DEPTH_8U, lChNum); in ReallocImage()
160 *ppImage = pImage; in ReallocImage()
D_cvfacedetection.h357 IplImage* pImage; in ReallocImage() local
360 pImage = *ppImage; in ReallocImage()
361 if( pImage != NULL ) in ReallocImage()
363 if (pImage->width != sz.width || pImage->height != sz.height || pImage->nChannels != lChNum) in ReallocImage()
364 cvReleaseImage( &pImage ); in ReallocImage()
366 if( pImage == NULL ) in ReallocImage()
367 pImage = cvCreateImage( sz, IPL_DEPTH_8U, lChNum); in ReallocImage()
368 *ppImage = pImage; in ReallocImage()
Dcvsegment.cpp84 icvSegmFloodFill_Stage1( uchar* pImage, int step, in icvSegmFloodFill_Stage1() argument
91 uchar* img = pImage + step * seed.y; in icvSegmFloodFill_Stage1()
103 img = pImage + seed.y*step; in icvSegmFloodFill_Stage1()
145 img = pImage + (YC + flag) * step; in icvSegmFloodFill_Stage1()
170 img = pImage + YC * step; in icvSegmFloodFill_Stage1()
206 icvSegmFloodFill_Stage2( uchar* pImage, int step, in icvSegmFloodFill_Stage2() argument
211 uchar* img = pImage + step * rect.y + rect.x * 3; in icvSegmFloodFill_Stage2()
Dcvlee.cpp1329 CV_IMPL int cvVoronoiDiagramFromImage(IplImage* pImage, in cvVoronoiDiagramFromImage() argument
1358 if(!pImage) in cvVoronoiDiagramFromImage()
1361 if(pImage->nChannels != 1 || pImage->depth != 8) in cvVoronoiDiagramFromImage()
1369 case CV_LEE_ERODE: image_size.width = pImage->width; in cvVoronoiDiagramFromImage()
1370 image_size.height = pImage->height; in cvVoronoiDiagramFromImage()
1372 cvErode(pImage,pWorkImage,0,1); in cvVoronoiDiagramFromImage()
1375 case CV_LEE_ZOOM: image_size.width = multiplicator*pImage->width; in cvVoronoiDiagramFromImage()
1376 image_size.height = multiplicator*pImage->height; in cvVoronoiDiagramFromImage()
1378 cvResize(pImage, pWorkImage, CV_INTER_NN); in cvVoronoiDiagramFromImage()
1381 case CV_LEE_NON: pWorkImage = pImage; in cvVoronoiDiagramFromImage()
[all …]
/external/opencv/cv/src/
Dcvfloodfill.cpp95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed, in icvFloodFill_8u_CnIR() argument
99 uchar* img = pImage + step * seed.y; in icvFloodFill_8u_CnIR()
167 img = pImage + (YC + dir) * step; in icvFloodFill_8u_CnIR()
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed, in icvFloodFill_32f_CnIR() argument
231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y; in icvFloodFill_32f_CnIR()
299 img = pImage + (YC + dir) * step; in icvFloodFill_32f_CnIR()
373 icvFloodFill_Grad_8u_CnIR( uchar* pImage, int step, uchar* pMask, int maskStep, in icvFloodFill_Grad_8u_CnIR() argument
378 uchar* img = pImage + step*seed.y; in icvFloodFill_Grad_8u_CnIR()
481 img = pImage + (YC + dir) * step; in icvFloodFill_Grad_8u_CnIR()
555 img = pImage + YC * step; in icvFloodFill_Grad_8u_CnIR()
[all …]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
DMeshHelper.java166 Pointer pImage = null; in toMesh() local
169 pImage = (Pointer) mtFace.getFieldValue("tpage"); in toMesh()
170 materialWithoutTextures = pImage.isNull(); in toMesh()
186 …if (pImage != null && pImage.isNotNull() && !materialNumberToTexture.containsKey(materialNumber)) { in toMesh()
187 …Texture texture = textureHelper.getTextureFromImage(pImage.fetchData(blenderContext.getInputStream… in toMesh()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
DTextureHelper.java167 Pointer pImage = (Pointer) tex.getFieldValue("ima"); in getTexture() local
168 if (pImage.isNotNull()){ in getTexture()
169 Structure image = pImage.fetchData(blenderContext.getInputStream()).get(0); in getTexture()
/external/opencv/cvaux/include/
Dcvaux.h990 CVAPI(int) cvVoronoiDiagramFromImage(IplImage* pImage,