HomeSort by relevance Sort by last modified time
    Searched refs:pImage (Results 1 - 25 of 26) sorted by null

1 2

  /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/pdfium/fpdfsdk/include/pdfwindow/
PWL_Signature.h 22 void SetImage(CFX_DIBSource* pImage);
43 void SetImage(CFX_DIBSource* pImage);
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_GeneralDecoder.h 48 FXCODEC_STATUS Start_decode_Arith(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
49 FXCODEC_STATUS Start_decode_Arith_V2(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
50 FXCODEC_STATUS Start_decode_Arith_V1(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause = NULL);
51 FXCODEC_STATUS Start_decode_MMR(CJBig2_Image** pImage, CJBig2_BitStream *pStream, IFX_Pause* pPause = NULL);
62 FXCODEC_STATUS decode_Arith_Template0_opt3(CJBig2_Image*pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
63 FXCODEC_STATUS decode_Arith_Template0_unopt(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
64 FXCODEC_STATUS decode_Arith_Template1_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
65 FXCODEC_STATUS decode_Arith_Template1_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
66 FXCODEC_STATUS decode_Arith_Template2_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause);
67 FXCODEC_STATUS decode_Arith_Template2_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause)
    [all...]
JBig2_GeneralDecoder.cpp 69 CJBig2_Image* pImage;
70 JBIG2_ALLOC(pImage, CJBig2_Image(GBW, GBH));
71 return pImage;
    [all...]
JBig2_Image.cpp 700 CJBig2_Image *pImage;
702 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
705 pImage->setPixel(i, j, getPixel(x + i, y + j));
708 return pImage;
713 CJBig2_Image *pImage;
721 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
723 pImage->fill(0);
724 return pImage;
726 if (!pImage->m_pData) {
727 return pImage;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_image.cpp 57 CPDF_Image* pImage = new CPDF_Image(m_pDocument);
58 pImage->LoadImageF((CPDF_Stream*)((CPDF_Object*)m_pStream)->Clone(), m_bInline);
61 pImage->SetInlineDict(pInlineDict);
63 return pImage;
fpdf_page_doc.cpp 549 CPDF_Image* pImage = new CPDF_Image(m_pPDFDoc);
550 pImage->LoadImageF((CPDF_Stream*)pImageStream, FALSE);
552 imageData->m_Obj = pImage;
554 return pImage;
pageint.h 188 CPDF_ImageObject* AddImage(CPDF_Stream* pStream, CPDF_Image* pImage, FX_BOOL bInline);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_intra_prediction.h 69 u8 *pImage, u32 width,
72 u32 h264bsdIntra16x16Prediction(mbStorage_t *pMb, u8 *data, u8 *pImage,
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Signature.cpp 24 void CPWL_Signature_Image::SetImage(CFX_DIBSource* pImage)
26 m_pImage = pImage;
116 void CPWL_Signature::SetImage(CFX_DIBSource* pImage)
118 m_pImage->SetImage(pImage);
  /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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
MeshHelper.java 166 Pointer pImage = null;
169 pImage = (Pointer) mtFace.getFieldValue("tpage");
170 materialWithoutTextures = pImage.isNull();
186 if (pImage != null && pImage.isNotNull() && !materialNumberToTexture.containsKey(materialNumber)) {
187 Texture texture = textureHelper.getTextureFromImage(pImage.fetchData(blenderContext.getInputStream()).get(0),
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_loadimage.cpp     [all...]
render_int.h 197 FX_BOOL Load(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL);
199 FX_BOOL StartLoadImage(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_LPVOID& LoadHandle, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
216 FX_BOOL Start(CPDF_ImageLoader* pImageLoader, const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
fpdf_render_text.cpp 315 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pPageObj;
316 m_ImageMatrix = pImage->m_Matrix;
317 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 167 Pointer pImage = (Pointer) tex.getFieldValue("ima");
168 if (pImage.isNotNull()){
169 Structure image = pImage.fetchData(blenderContext.getInputStream()).get(0);
  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 610 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(),
619 CGContextClipToMask(_context, rect_usr, pImage);
626 CGImageRelease(pImage);
735 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(),
744 CGContextClipToMask(_context, rect, pImage);
751 CGImageRelease(pImage);
    [all...]
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp     [all...]
autoreflow.cpp 342 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pCurObj;
343 FX_RECT imageBBox = pImage->GetBBox(&m_PDFDisplayMatrix);
  /external/pdfium/fpdfsdk/include/
fsdk_baseform.h 153 void AddImageToAppearance(const CFX_ByteString& sAPType, CPDF_Stream* pImage);
  /external/pdfium/fpdfsdk/src/
fsdk_baseform.cpp     [all...]
  /external/opencv/cvaux/include/
cvaux.h     [all...]

Completed in 4519 milliseconds

1 2