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

1 2

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InterpolateLuma.c 33 * srcStep -reference frame step, in bytes; must be a multiple of roi.width
35 * roi.width
40 * roi -Dimension of the interpolation region; the parameters roi.width and
41 * roi.height must be equal to either 4, 8, or 16.
45 * pDst -Pointer to the destination frame buffer if roi.width==4, 4-byte
46 * alignment required if roi.width==8, 8-byte alignment required
47 * if roi.width==16, 16-byte alignment required
54 * srcStep or dstStep < roi.width.
56 * roi.width or roi.height is out of range {4, 8, 16}.
    [all...]
omxVCM4P10_InterpolateChroma.c 35 * roi.width.
40 * roi -Dimension of the interpolation region; the parameters roi.width and
41 * roi.height must be equal to either 2, 4, or 8.
45 * pDst -Pointer to the destination frame buffer if roi.width==2, 2-byte
46 * alignment required if roi.width==4, 4-byte alignment required
47 * if roi.width==8, 8-byte alignment required
56 * roi.width or roi.height is out of range {2,4,8}.
57 * roi.width is equal to 2, but pDst is not 2-byte aligned.
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_InterpolateChroma.c 35 * [in] dstStep Destination frame step in byte. Must be multiple of roi.width.
40 * [in] roi Dimension of the interpolation region;the parameters roi.width and roi.height must
43 * if roi.width==2, 2-byte alignment required
44 * if roi.width==4, 4-byte alignment required
45 * if roi.width==8, 8-byte alignment required
53 * roi.width or roi.height is out of range {2,4,8}.
54 * roi.width is equal to 2, but pDst is not 2-byte aligned
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_InterpolateChroma.c 35 * [in] dstStep Destination frame step in byte. Must be multiple of roi.width.
40 * [in] roi Dimension of the interpolation region;the parameters roi.width and roi.height must
43 * if roi.width==2, 2-byte alignment required
44 * if roi.width==4, 4-byte alignment required
45 * if roi.width==8, 8-byte alignment required
53 * roi.width or roi.height is out of range {2,4,8}.
54 * roi.width is equal to 2, but pDst is not 2-byte aligned
    [all...]
  /external/opencv/cvaux/src/
cvbgfg_codebook.cpp 87 CvRect roi, const CvArr* _mask )
103 if( roi.x == 0 && roi.y == 0 && roi.width == 0 && roi.height == 0 )
105 roi.width = image->cols;
106 roi.height = image->rows;
109 CV_ASSERT( (unsigned)roi.x < (unsigned)image->cols &&
110 (unsigned)roi.y < (unsigned)image->rows &&
111 roi.width >= 0 && roi.height >= 0 &
    [all...]
cvcreatehandmask.cpp 54 CvSize size, CvRect * roi )
93 roi->x = j_min;
94 roi->y = i_min;
95 roi->width = j_max - j_min + 1;
96 roi->height = i_max - i_min + 1;
111 // roi - result hand mask ROI
116 cvCreateHandMask( CvSeq * numbers, IplImage * img_mask, CvRect * roi )
135 img_mask_step, img_mask_size, roi ));
cvhmmobs.cpp 49 // Parameters: img - pointer to the original image ROI
51 // roi - width and height of ROI in pixels
68 // Nx = floor((roi.width - dctSize.width + delta.width)/delta.width);
69 // Ny = floor((roi.height - dctSize.height + delta.height)/delta.height);
117 icvImgToObs_DCT_8u32f_C1R( uchar * img, int imgStep, CvSize roi,
142 if( roi.width <= 0 || roi.height <= 0 )
155 Nx = (roi.width - dctSize.width + delta.width) / delta.width;
156 Ny = (roi.height - dctSize.height + delta.height) / delta.height
    [all...]
cv3dtracker.cpp 110 if( samples[c]->roi &&
111 ((samples[c]->roi->xOffset | samples[c]->roi->yOffset
112 | samples[c]->roi->width | samples[c]->roi->height) < 0 ||
113 samples[c]->roi->xOffset + samples[c]->roi->width > samples[c]->width ||
114 samples[c]->roi->yOffset + samples[c]->roi->height > samples[c]->height ||
115 (unsigned) (samples[c]->roi->coi) > (unsigned) (samples[c]->nChannels))
    [all...]
cvfacedetection.cpp 380 if ( ( !FaceImage->roi ) )
383 lpFaceTemplate1 = new BoostingFaceTemplate(3,cvRect(FaceImage->roi->xOffset,FaceImage->roi->yOffset,
384 FaceImage->roi->width,FaceImage->roi->height));
  /external/opencv/cv/src/
cvthresh.cpp 46 CvSize roi, uchar thresh, uchar maxval, int type )
87 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
89 for( j = 0; j <= roi.width - 4; j += 4 )
104 for( ; j < roi.width; j++ )
114 CvSize roi, float thresh, float maxval, int type )
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
133 for( j = 0; j < roi.width; j++ )
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
144 for( j = 0; j < roi.width; j++ )
153 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step
305 CvSize roi; local
    [all...]
cvsnakes.cpp 55 // roi - size of ROI,
73 CvSize roi,
102 int map_width = ((roi.width - 1) >> 3) + 1;
103 int map_height = ((roi.height - 1) >> 3) + 1;
110 CvMat _src = cvMat( roi.height, roi.width, CV_8UC1, src );
121 if( (roi.height <= 0) || (roi.width <= 0) )
123 if( srcStep < roi.width
    [all...]
cvpyrsegmentation.cpp 61 _CvRect16u rect; /* ROI for the connected component */
77 _CvRect16u rect; /* ROI for the connected component */
183 CvSize roi, CvFilter filter,
220 if( roi.width <= 0 || roi.height <= 0 || src_step < roi.width || dst_step < roi.width )
229 if( ((roi.width | roi.height) & ((1 << level) - 1)) != 0 )
243 buffer_size = roi.width * roi.height * (sizeof( float ) + sizeof( _CvPyramidBase ))
    [all...]
_cvipp.h 296 int dststep, CvSize roi, CvSize esize, CvPoint anchor, void* buffer )) \
304 void* dst, int dststep, CvSize roi, int bordertype, void* morphstate ))
357 CvSize roi, CvSize ksize, CvPoint anchor ))
367 CvSize roi, CvSize ksize, CvPoint anchor ))
385 CV_PLUGINS1(CV_PLUGIN_IPPCV), ( CvSize roi, int masksize, int* buffersize )) \
388 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int masksize, \
408 CV_PLUGINS1(CV_PLUGIN_IPPCV), ( CvSize roi, int* buffersize )) \
411 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, \
426 CV_PLUGINS1(CV_PLUGIN_IPPCV), ( CvSize roi, int masksize, int* buffersize )) \
429 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int masksize,
    [all...]
_cvimgproc.h 56 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int aperture );
59 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi );
cvcalccontrasthistogram.cpp 298 CvSize roi = {0,0};
306 cvGetImageRawData( img[i], &data[i], &step, &roi );}
317 IPPI_CALL( icvCalcContrastHist8uC1R( data, step, roi, hist, dont_clear ) );
335 CvSize roi = { 0, 0 };
354 cvGetImageRawData( img[i], &data[i], &step, &roi );
369 IPPI_CALL( icvCalcContrastHist8uC1R( data, step, roi, hist, dont_clear ));
374 mask_step, roi, hist, dont_clear ));
cvfloodfill.cpp 95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed,
117 while( ++R < roi.width && img[R] == val0[0] )
134 while( ++R < roi.width && ICV_EQ_C3( img + R*3, val0 ))
164 for( k = 0/*(unsigned)(YC - dir) >= (unsigned)roi.height*/; k < 3; k++ )
171 if( (unsigned)(YC + dir) >= (unsigned)roi.height )
177 if( (unsigned)i < (unsigned)roi.width && img[i] == val0[0] )
184 while( ++i < roi.width && img[i] == val0[0] )
193 if( (unsigned)i < (unsigned)roi.width && ICV_EQ_C3( img + i*3, val0 ))
200 while( ++i < roi.width && ICV_EQ_C3( img + i*3, val0 ))
227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed
    [all...]
  /external/opencv/otherlibs/highgui/
highgui.h 252 return !img ? 0 : !img->roi ? img->width : img->roi->width;
258 return !img ? 0 : !img->roi ? img->height : img->roi->height;
312 IplROI roi; local
314 roi.xOffset = r.left;
315 roi.yOffset = r.top;
316 roi.width = r.right - r.left;
317 roi.height = r.bottom - r.top;
318 roi.coi = 0
    [all...]
image.cpp 214 CvRect roi = cvGetImageROI( m_img ); local
217 if( roi.width == dst.width && roi.height == dst.height )
219 Show( hDCDst, dst.x, dst.y, dst.width, dst.height, roi.x, roi.y );
223 if( roi.width > dst.width )
241 roi.x, roi.y, roi.width, roi.height
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 136 !image->roi ? cvSize(image->width,image->height) :
137 cvSize(image->roi->width, image->roi->height);
140 CvRect roi() const function in class:CvImage
143 !image->roi ? cvRect(0,0,image->width,image->height) :
144 cvRect(image->roi->xOffset,image->roi->yOffset,
145 image->roi->width,image->roi->height);
148 int coi() const { return !image || !image->roi ? 0 : image->roi->coi;
    [all...]
cxtypes.h 383 struct _IplROI *roi; /* Image ROI. If NULL, the whole image is selected. */ member in struct:_IplImage
863 IplROI roi; local
864 roi.xOffset = rect.x;
865 roi.yOffset = rect.y;
866 roi.width = rect.width;
867 roi.height = rect.height;
868 roi.coi = coi;
870 return roi;
874 CV_INLINE CvRect cvROIToRect( IplROI roi )
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Preview_7x27A.cpp 233 void QCameraStream_preview::notifyROIEvent(fd_roi_t roi)
235 switch (roi.type) {
242 mHalCamCtrl->mMetadata.number_of_faces = roi.d.hdr.num_face_detected;
263 int idx = roi.d.data.idx;
270 mHalCamCtrl->mFace[idx].id = roi.d.data.face.id;
271 mHalCamCtrl->mFace[idx].score = roi.d.data.face.score / 10; // keep within range 0~100
275 roi.d.data.face.face_boundary.x*2000/mHalCamCtrl->mDimension.display_width - 1000;
278 roi.d.data.face.face_boundary.y*2000/mHalCamCtrl->mDimension.display_height - 1000;
281 roi.d.data.face.face_boundary.dx*2000/mHalCamCtrl->mDimension.display_width;
284 roi.d.data.face.face_boundary.dy*2000/mHalCamCtrl->mDimension.display_height
    [all...]
QCameraHWI_Preview.cpp 408 void QCameraStream_preview::notifyROIEvent(fd_roi_t roi)
411 switch (roi.type) {
418 mHalCamCtrl->mMetadata.number_of_faces = roi.d.hdr.num_face_detected;
440 int idx = roi.d.data.idx;
447 mHalCamCtrl->mFace[idx].id = roi.d.data.face.id;
448 mHalCamCtrl->mFace[idx].score = roi.d.data.face.score;
452 roi.d.data.face.face_boundary.x*2000/mHalCamCtrl->mDimension.display_width - 1000;
455 roi.d.data.face.face_boundary.y*2000/mHalCamCtrl->mDimension.display_height - 1000;
458 roi.d.data.face.face_boundary.dx*2000/mHalCamCtrl->mDimension.display_width;
461 roi.d.data.face.face_boundary.dy*2000/mHalCamCtrl->mDimension.display_height
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 1178 // Retrieves essential information about image ROI or CvMat data
1211 if( img->roi )
1213 *roi_size = cvSize( img->roi->width, img->roi->height );
3232 IplROI *roi = 0; local
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Preview.cpp 388 void QCameraStream_preview::notifyROIEvent(fd_roi_t roi)
390 switch (roi.type) {
397 mHalCamCtrl->mMetadata.number_of_faces = roi.d.hdr.num_face_detected;
418 int idx = roi.d.data.idx;
425 mHalCamCtrl->mFace[idx].id = roi.d.data.face.id;
426 mHalCamCtrl->mFace[idx].score = roi.d.data.face.score;
430 roi.d.data.face.face_boundary.x*2000/mHalCamCtrl->mDimension.display_width - 1000;
433 roi.d.data.face.face_boundary.y*2000/mHalCamCtrl->mDimension.display_height - 1000;
436 roi.d.data.face.face_boundary.dx*2000/mHalCamCtrl->mDimension.display_width;
439 roi.d.data.face.face_boundary.dy*2000/mHalCamCtrl->mDimension.display_height
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_display.c 433 i, camframe_roi.roi[i].x, camframe_roi.roi[i].y,
434 camframe_roi.roi[i].dx, camframe_roi.roi[i].dy);
436 camframe_roi.roi[i].x, camframe_roi.roi[i].y,
437 camframe_roi.roi[i].dx, camframe_roi.roi[i].dy);

Completed in 479 milliseconds

1 2