HomeSort by relevance Sort by last modified time
    Searched defs:roi (Results 1 - 21 of 21) sorted by null

  /external/opencv/otherlibs/highgui/
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...]
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...]
  /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...]
cvcorner.cpp 625 CvRect roi = cvRect(0,y,size.width,delta); local
631 dx_filter.process(src,Dx,roi,origin,stage);
632 dy_filter.process(src,Dy,roi,origin,stage);
633 d2x_filter.process(src,D2x,roi,origin,stage);
634 d2y_filter.process(src,D2y,roi,origin,stage);
635 stripe_size.height = dxy_filter.process(src,Dxy,roi,origin,stage);
cvhistogram.cpp 2151 IplROI roi; local
    [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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 1984 OMXSize roi; local
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 1132 vpx_roi_map_t *roi = (vpx_roi_map_t *)data; local
    [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...]
cxpersistence.cpp 3979 CvRect roi; local
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 206 inline int Init(const CvRect& roi, const CvTrackingRect& prev, CvMemStorage* mstg = NULL)
208 m_rROI = roi;
268 CvRect roi = m_rROI; local
269 Extend(roi, 1);
270 cvSetImageROI(img, roi);
271 cvSetImageROI(thresh, roi);
317 Move(cr.r, roi.x, roi.y);
327 Move(cr.r, roi.x, roi.y)
    [all...]
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3HWI.cpp 3136 cam_area_t roi; local
3149 cam_area_t roi; local
3162 cam_area_t roi; local
    [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3HWI.cpp 3967 cam_area_t roi; local
3980 cam_area_t roi; local
3993 cam_area_t roi; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/common/
cam_types.h 611 cam_rect_t roi[MAX_ROI]; member in struct:__anon1693
    [all...]
  /device/asus/flo/camera/
QCamera_Intf.h 715 roi_t roi[MAX_ROI]; member in struct:__anon1869
976 struct fd_roi_t roi; member in union:__anon1898::__anon1899
  /device/lge/mako/camera/
QualcommCameraHardware.cpp 3196 fd_roi_t *roi = (fd_roi_t *)(frame->roi_info.info); local
    [all...]
QCamera_Intf.h 738 roi_t roi[MAX_ROI]; member in struct:__anon2235
1000 struct fd_roi_t roi; member in union:__anon2264::__anon2265
    [all...]
  /external/chromium_org/third_party/libva/va/
va.h 677 /* ROI (region of interest), for JPEG2000 */
684 } roi; member in struct:_VAPictureParameterBufferJPEG
    [all...]
  /hardware/qcom/camera/QCamera2/stack/common/
cam_types.h 626 cam_rect_t roi[MAX_ROI]; member in struct:__anon33115
    [all...]
  /hardware/qcom/camera/
QCamera_Intf.h 715 roi_t roi[MAX_ROI]; member in struct:__anon33299
976 struct fd_roi_t roi; member in union:__anon33328::__anon33329

Completed in 822 milliseconds