Searched refs:pImage (Results 1 - 23 of 23) 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/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_GeneralDecoder.h48 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_ArithDecode
[all...]
H A DJBig2_GeneralDecoder.cpp16 CJBig2_Image* pImage; local
17 JBIG2_ALLOC(pImage, CJBig2_Image(GBW, GBH));
18 return pImage;
1251 CJBig2_Image *pImage; local
1252 JBIG2_ALLOC(pImage, CJBig2_Image(GBW, GBH));
1253 if (pImage->m_pData == NULL) {
1254 delete pImage;
1259 _FaxG4Decode(m_pModule, pStream->getBuf(), pStream->getLength(), &bitpos, pImage->m_pData, GBW, GBH, pImage->m_nStride);
1261 for(i = 0; (FX_DWORD)i < pImage
1269 CJBig2_Image* pImage; local
3340 Start_decode_Arith(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3371 CJBig2_Image* pImage = *m_pImage; local
3409 Start_decode_Arith_V2(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3582 Start_decode_Arith_V1(CJBig2_Image** pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3717 Start_decode_MMR(CJBig2_Image** pImage, CJBig2_BitStream *pStream, IFX_Pause* pPause) argument
3759 decode_Arith_Template0_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3851 decode_Arith_Template0_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3900 decode_Arith_Template1_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
3991 decode_Arith_Template1_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
4038 decode_Arith_Template2_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
4129 decode_Arith_Template2_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
4174 decode_Arith_Template3_opt3(CJBig2_Image *pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
4250 decode_Arith_Template3_unopt(CJBig2_Image * pImage, CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, IFX_Pause* pPause) argument
[all...]
H A DJBig2_Image.cpp698 CJBig2_Image *pImage; local
700 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
703 pImage->setPixel(i, j, getPixel(x + i, y + j));
706 return pImage;
711 CJBig2_Image *pImage; local
719 JBIG2_ALLOC(pImage, CJBig2_Image(w, h));
721 pImage->fill(0);
722 return pImage;
724 if (!pImage->m_pData) {
725 return pImage;
[all...]
H A DJBig2_Context.cpp8 void OutputBitmap(CJBig2_Image* pImage) argument
10 if(!pImage) {
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_image.cpp57 CPDF_Image* pImage = FX_NEW CPDF_Image(m_pDocument); local
58 pImage->LoadImageF((CPDF_Stream*)((CPDF_Object*)m_pStream)->Clone(), m_bInline);
61 pImage->SetInlineDict(pInlineDict);
63 return pImage;
H A Dfpdf_page_doc.cpp538 CPDF_Image* pImage = FX_NEW CPDF_Image(m_pPDFDoc); local
539 if (!pImage) {
543 pImage->LoadImageF((CPDF_Stream*)pImageStream, FALSE);
545 imageData->m_Obj = pImage;
547 return pImage;
H A Dpageint.h224 CPDF_ImageObject* AddImage(CPDF_Stream* pStream, CPDF_Image* pImage, FX_BOOL bInline);
/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_Signature.h20 void SetImage(CFX_DIBSource* pImage);
41 void SetImage(CFX_DIBSource* pImage);
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Signature.cpp24 void CPWL_Signature_Image::SetImage(CFX_DIBSource* pImage) argument
26 m_pImage = pImage;
116 void CPWL_Signature::SetImage(CFX_DIBSource* pImage) argument
118 m_pImage->SetImage(pImage);
/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...]
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_loadimage.cpp1436 FX_BOOL CPDF_ProgressiveImageLoaderHandle::Start(CPDF_ImageLoader* pImageLoader, const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus, FX_INT32 nDownsampleWidth, FX_INT32 nDownsampleHeight) argument
1440 m_pImage = (CPDF_ImageObject*)pImage;
1445 ret = pCache->StartGetCachedBitmap(pImage->m_pImage->GetStream(), bStdCS, GroupFamily, bLoadMask, pRenderStatus, m_nDownsampleWidth, m_nDownsampleHeight);
1453 ret = pImage->m_pImage->StartLoadDIBSource(pRenderStatus->m_pFormResource, pRenderStatus->m_pPageResource, bStdCS, GroupFamily, bLoadMask);
1485 FX_BOOL CPDF_ImageLoader::Load(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus) argument
1487 if (pImage == NULL) {
1491 pCache->GetCachedBitmap(pImage->m_pImage->GetStream(), m_pBitmap, m_pMask, m_MatteColor, bStdCS, GroupFamily, bLoadMask, pRenderStatus, m_nDownsampleWidth, m_nDownsampleHeight);
1494 m_pBitmap = pImage->m_pImage->LoadDIBSource(&m_pMask, &m_MatteColor, bStdCS, GroupFamily, bLoadMask);
1499 FX_BOOL CPDF_ImageLoader::StartLoadImage(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_LPVOID& LoadHandle, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus, FX_INT32 nDownsampleWidth, FX_INT32 nDownsampleHeight) argument
1505 FX_BOOL ret = pLoaderHandle->Start(this, pImage, pCach
[all...]
H A Drender_int.h192 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);
194 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);
211 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);
H A Dfpdf_render_text.cpp327 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pPageObj; local
328 m_ImageMatrix = pImage->m_Matrix;
329 const CFX_DIBSource* pSource = pImage->m_pImage->LoadDIBSource();
/external/pdfium/core/src/fxge/apple/
H A Dfx_quartz_device.cpp610 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(), local
619 CGContextClipToMask(_context, rect_usr, pImage);
626 CGImageRelease(pImage);
735 CGImageRef pImage = CGImageCreate(pBitmap1->GetWidth(), local
744 CGContextClipToMask(_context, rect, pImage);
751 CGImageRelease(pImage);
/external/pdfium/core/src/reflow/
H A Dlayoutprocessor_reflow.cpp1081 CPDF_Image *pImage = pImageObj->m_pImage; local
1082 if (!pImage->m_pDIBSource || !pImage->m_pMask) {
1083 if(pImage->StartLoadDIBSource(m_pReflowedPage->GetFormResDict(pImageObj), m_pReflowedPage->m_pPDFPage->m_pResources, 0, 0, TRUE)) {
1084 pImage->Continue(NULL);
1087 CFX_DIBSource* pDibSource = pImage->DetachBitmap();
1092 CFX_DIBSource* pMask = pImage->DetachMask();
H A Dautoreflow.cpp343 CPDF_ImageObject* pImage = (CPDF_ImageObject*)pCurObj; local
344 FX_RECT imageBBox = pImage->GetBBox(&m_PDFDisplayMatrix);
/external/pdfium/fpdfsdk/include/
H A Dfsdk_baseform.h145 void AddImageToAppearance(const CFX_ByteString& sAPType, CPDF_Stream* pImage);
/external/opencv/cvaux/include/
H A Dcvaux.h990 CVAPI(int) cvVoronoiDiagramFromImage(IplImage* pImage,
/external/pdfium/fpdfsdk/src/
H A Dfsdk_baseform.cpp1536 void CPDFSDK_Widget::AddImageToAppearance(const CFX_ByteString& sAPType, CPDF_Stream* pImage) argument
1538 ASSERT(pImage != NULL);
1557 if (CPDF_Dictionary* pImageDict = pImage->GetDict())
1574 pXObject->SetAtReference(sImageAlias, pDoc, pImage);

Completed in 4286 milliseconds