/external/opencv3/modules/stitching/src/ |
util.cpp | 101 bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi) 109 roi = Rect(x_tl, y_tl, x_br - x_tl, y_br - y_tl);
|
blenders.cpp | 183 Rect roi(corners[i].x - dst_roi.x, corners[i].y - dst_roi.y, 185 add(weights_sum(roi), weight_maps[i], weights_sum(roi)); 190 Rect roi(corners[i].x - dst_roi.x, corners[i].y - dst_roi.y, 192 Mat tmp = weights_sum(roi);
|
stitcher.cpp | 261 Rect roi = w->warpRoi(sz, K, cameras_[i].R); local 262 corners[i] = roi.tl(); 263 sizes[i] = roi.size();
|
/frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/ |
FindRegion.java | 38 Rect mRoiBounds; // bounding box of the ROI 60 throw new RuntimeException("ROI to close to the edge of the image");
|
/external/opencv/cv/src/ |
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);
|
cvoptflowlk.cpp | 60 // imgA, // pointer to first frame ROI 61 // imgB, // pointer to second frame ROI 63 // imgSize, // size of the source image ROI 66 // velocityY, // vertical components of optical flow ROI 74 // Notes: 1.Optical flow to be computed for every pixel in ROI
|
cvoptflowbm.cpp | 86 // imgA, // pointer to first frame ROI 87 // imgB, // pointer to second frame ROI 94 // velocityX, // pointer to ROI of horizontal and
|
/hardware/qcom/display/msm8909/libhwcomposer/ |
hwc_utils.h | 144 hwc_rect_t lRoi; //left ROI 145 hwc_rect_t rRoi; //right ROI. Unused in single DSI panels. 365 // Resets display ROI to full panel resoluion 368 // Aligns updating ROI to panel restrictions 369 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary); 658 //Layers out of ROI
|
/external/opencv/cvaux/src/ |
cvhmm.cpp | [all...] |
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...] |
/external/libvpx/libvpx/vp8/ |
vp8_cx_iface.c | 1216 vpx_roi_map_t *roi = (vpx_roi_map_t *)data; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
vp8_cx_iface.c | 1134 vpx_roi_map_t *roi = (vpx_roi_map_t *)data; local [all...] |
/hardware/intel/common/libva/va/ |
va.h | 584 * \brief Encoding region-of-interest (ROI) attribute. Read-only. 586 * This attribute conveys whether the driver supports region-of-interest (ROI) encoding, 587 * based on user provided ROI rectangles. The attribute value returned indicates the number 588 * of regions that are supported. e.g. A value of 0 means ROI encoding is not supported. 589 * If ROI encoding is supported, the ROI information is passed to the driver using [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
core_c.h | 161 If the ROI is set to NULL and the coi is *not* 0, the ROI is allocated. Most OpenCV functions do 179 /** @brief Sets an image Region Of Interest (ROI) for a given rectangle. 181 If the original image ROI was NULL and the rect is not the whole image, the ROI structure is 184 Most OpenCV functions support the use of ROI and treat the image rectangle as a separate image. For 186 ROI, not the original image. 188 @param rect The ROI rectangle 192 /** @brief Resets the image ROI to include the entire image and releases the ROI structure [all...] |
/external/opencv3/modules/calib3d/src/ |
stereobm.cpp | [all...] |
stereosgbm.cpp | 291 computes disparity for "roi" in img1 w.r.t. img2 and write it to disp1buf. 292 that is, disp1buf(x, y)=d means that img1(x+roi.x, y+roi.y) ~ img2(x+roi.x-d, y+roi.y). 295 disp2full(x+roi.x,y+roi.y)=d means that img2(x+roi.x, y+roi.y) ~ img1(x+roi.x+d, y+roi.y [all...] |
/external/opencv3/modules/calib3d/test/ |
test_cameracalibration.cpp | [all...] |
/external/opencv3/modules/imgproc/src/ |
floodfill.cpp | 135 Size roi = image.size(); local 147 while( ++R < roi.width && img[R] == val0 ) 184 if( (unsigned)(YC + dir) >= (unsigned)roi.height ) 193 if( (unsigned)i < (unsigned)roi.width && img[i] == val0 ) 200 while( ++i < roi.width && img[i] == val0 )
|
/hardware/qcom/display/msm8084/libhwcomposer/ |
hwc_utils.h | 129 hwc_rect_t lRoi; //left ROI 130 hwc_rect_t rRoi; //right ROI. Unused in single DSI panels. 306 // Resets display ROI to full panel resoluion 309 // Aligns updating ROI to panel restrictions 310 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
|
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_utils.h | 134 hwc_rect_t lRoi; //left ROI 135 hwc_rect_t rRoi; //right ROI. Unused in single DSI panels. 326 // Resets display ROI to full panel resoluion 329 // Aligns updating ROI to panel restrictions 330 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
|
/external/opencv3/3rdparty/libjasper/ |
jpc_cs.h | 356 /* The maxshift ROI style. */ 364 /* The ROI style. */ 367 /* The ROI shift value. */
|
/external/opencv3/modules/core/src/ |
matop.cpp | 236 void MatOp::roi(const MatExpr& expr, const Range& rowRange, const Range& colRange, MatExpr& e) const function in class:cv::MatOp 606 op->roi(*this, Range(y, y+1), Range::all(), e); 613 op->roi(*this, Range::all(), Range(x, x+1), e); 627 op->roi(*this, rowRange, colRange, e); 631 MatExpr MatExpr::operator()( const Rect& roi ) const 634 op->roi(*this, Range(roi.y, roi.y + roi.height), Range(roi.x, roi.x + roi.width), e) [all...] |
/external/opencv3/modules/cudaimgproc/perf/ |
perf_hough.cpp | 307 cv::Mat roi = image(cv::Rect(pos, obj.size())); local 308 cv::add(roi, obj, roi);
|
/external/opencv3/samples/cpp/ |
train_HOG.cpp | 124 Mat roi = (*img)(box); local 125 neg_lst.push_back( roi.clone() ); 127 imshow( "img", roi.clone() );
|
/hardware/qcom/display/msm8909/libqdutils/ |
mdp_version.cpp | 219 ALOGI("Min ROI Width: %d", mPanelInfo.mMinROIWidth); 223 ALOGI("Min ROI Height: %d", mPanelInfo.mMinROIHeight); 227 ALOGI("Needs ROI Merge: %d", mPanelInfo.mNeedsROIMerge);
|