HomeSort by relevance Sort by last modified time
    Searched full:roi (Results 76 - 100 of 310) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraStream.h 93 virtual void notifyROIEvent(fd_roi_t roi) {;}
188 void notifyROIEvent(fd_roi_t roi);
  /device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_display.c 431 i, camframe_roi.roi[i].x, camframe_roi.roi[i].y,
432 camframe_roi.roi[i].dx, camframe_roi.roi[i].dy);
434 camframe_roi.roi[i].x, camframe_roi.roi[i].y,
435 camframe_roi.roi[i].dx, camframe_roi.roi[i].dy);
  /external/opencv/cv/src/
_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 );
cvoptflowhs.cpp 61 // imgA - pointer to first frame ROI
62 // imgB - pointer to second frame ROI
64 // imgSize - size of the source image ROI
67 // velocityY - vertical components of optical flow ROI
77 // Notes: 1.Optical flow to be computed for every pixel in ROI
  /external/opencv3/modules/cudaobjdetect/src/
cascadeclassifier.cpp 297 NcvSize32u roi;
298 roi.width = d_src.width();
299 roi.height = d_src.height();
301 ncvStat = ncvDetectObjectsMultiScale_device(d_src, roi, d_rects, numDetections, haar, *h_haarStages,
344 NcvSize32u roi;
345 roi.width = d_src.width();
346 roi.height = d_src.height();
354 d_src, roi, d_rects, numDetections, haar, *h_haarStages,
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
gpumat.hpp 88 __host__ GpuMat_(const GpuMat_& m, Rect roi);
122 __host__ GpuMat_ operator ()(Rect roi) const;
  /external/opencv3/modules/imgproc/test/ocl/
test_boxfilter.cpp 142 Bool() // ROI
155 Bool() // ROI
test_filter2d.cpp 135 Bool() // ROI
test_sepfilter2D.cpp 132 Bool() // ROI
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_mdpcomp.cpp 77 dumpsys_log(buf, "Programmed ROI's: Left: [%d, %d, %d, %d] "
86 dumpsys_log(buf, "Programmed ROI: [%d, %d, %d, %d] \n",
229 * outside frame's ROI */
449 hwc_rect_t roi = ctx->listStats[mDpy].lRoi; local
450 fbRect = getIntersection(fbRect, roi);
453 /* 1) Identify layers that are not visible or lying outside the updating ROI and
456 * ROI, reset ROI to full resolution. */
477 /* Reset frame ROI when any layer which needs scaling also needs ROI
503 struct hwc_rect roi = (struct hwc_rect){0, 0, 0, 0}; local
    [all...]
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_mdpcomp.cpp 79 dumpsys_log(buf, "Programmed ROI's: Left: [%d, %d, %d, %d] "
88 dumpsys_log(buf, "Programmed ROI: [%d, %d, %d, %d] \n",
271 * outside frame's ROI */
518 hwc_rect_t roi = ctx->listStats[mDpy].lRoi; local
519 fbRect = getIntersection(fbRect, roi);
522 /* 1) Identify layers that are not visible or lying outside the updating ROI and
525 * ROI, reset ROI to full resolution. */
546 /* Reset frame ROI when any layer which needs scaling also needs ROI
573 struct hwc_rect roi = (struct hwc_rect){0, 0, 0, 0}; local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_utils.h 138 hwc_rect_t lRoi; //left ROI
139 hwc_rect_t rRoi; //right ROI. Unused in single DSI panels.
386 // Resets display ROI to full panel resoluion
389 // Modifies ROI even from middle of the screen
390 hwc_rect expandROIFromMidPoint(hwc_rect roi, hwc_rect fullFrame);
392 // Aligns updating ROI to panel restrictions
393 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
671 //Layers out of ROI
  /external/opencv/cxcore/include/
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...]
  /external/opencv3/doc/py_tutorials/py_calib3d/py_calibration/
py_calibration.markdown 161 If alpha=1, all pixels are retained with some extra black images. It also returns an image ROI which
168 newcameramtx, roi=cv2.getOptimalNewCameraMatrix(mtx,dist,(w,h),1,(w,h))
172 This is the shortest path. Just call the function and use ROI obtained above to crop the result.
178 x,y,w,h = roi
192 x,y,w,h = roi
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 231 //! starts filtering of the specified ROI of an image of size wholeSize.
232 virtual int start(Size wholeSize, Rect roi, int maxBufRows = -1);
233 //! starts filtering of the specified ROI of the specified image.
239 //! applies filter to the specified ROI of the image. if srcRoi=(0,0,-1,-1), the whole image is filtered.
257 Rect roi; member in class:cv::FilterEngine
canny.cpp 61 IppiSize roi = { _src.cols, _src.rows }; local
63 if (ippiFilterSobelNegVertGetBufferSize_8u16s_C1R(roi, ippMskSize3x3, &size) < 0)
65 if (ippiFilterSobelHorizGetBufferSize_8u16s_C1R(roi, ippMskSize3x3, &size1) < 0)
69 if (ippiCannyGetSize(roi, &size1) < 0)
78 _dx.ptr<short>(), (int)_dx.step, roi,
84 _dy.ptr<short>(), (int)_dy.step, roi,
90 _dst.ptr(), (int)_dst.step, roi, low, high, buffer) < 0 )
265 // uses the pixels outside of the ROI to form a border.
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
ToneDownBGSupp.c 105 /* expand rectangle. the result is called the ROI */
124 /* part 1: sum up all the lines above the ROI */
138 /* part 2: sum up all the lines below the ROI */
327 /* maximum reach of the ROI */
354 /* shrink rectangle. the result is called the ROI */
386 /* this function computes an image that moving away from the ROI gradually fades to
389 * w depends on the distance to the ROI.
417 * (2) blend in the original image moving towards the ROI
435 /* (1) far from the ROI the image is filled with the BG grey value */
467 /* (2) blend from ROI to outside regions *
    [all...]
  /external/opencv3/modules/shape/src/
tps_trans.cpp 253 Mat matLroi(matL, Rect(0,0,(int)matches.size(),(int)matches.size())); //roi for K
255 matLroi = Mat(matL,Rect((int)matches.size(),0,3,(int)matches.size())); //roi for P
259 matLroi = Mat(matL,Rect(0,(int)matches.size(),(int)matches.size(),3)); //roi for P'
  /hardware/qcom/display/msm8084/libqdutils/
mdp_version.cpp 198 ALOGI("Min ROI Width: %d", mPanelInfo.mMinROIWidth);
202 ALOGI("Min ROI Height: %d", mPanelInfo.mMinROIHeight);
206 ALOGI("Needs ROI Merge: %d", mPanelInfo.mNeedsROIMerge);
  /hardware/qcom/display/msm8226/libqdutils/
mdp_version.cpp 204 ALOGI("Min ROI Width: %d", mPanelInfo.mMinROIWidth);
208 ALOGI("Min ROI Height: %d", mPanelInfo.mMinROIHeight);
212 ALOGI("Needs ROI Merge: %d", mPanelInfo.mNeedsROIMerge);
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_vpu.h 202 /* roi where active region detection is applied */
204 /* roi(s) excluded from active region detection*/
273 * VPU_CTRL_ACTIVE_REGION_RESULT: detected active region roi (get only)
  /external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
discrete_fourier_transform.cpp 57 Mat q0(magI, Rect(0, 0, cx, cy)); // Top-Left - Create a ROI per quadrant
  /external/opencv3/samples/gpu/
cascadeclassifier_nvidia_api.cpp 122 NcvSize32u roi;
123 roi.width = d_src.width();
124 roi.height = d_src.height();
128 d_src, roi, d_rects, numDetections, haar, h_haarStages,
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HWI.h 132 static void convertFromRegions(cam_area_t* roi, const camera_metadata_t *settings,
134 static bool resetIfNeededROI(cam_area_t* roi, const cam_crop_region_t* scalerCropRegion);
  /external/opencv3/modules/calib3d/src/
quadsubpix.cpp 179 Rect roi(cvRound(corners[i].x - region_size.width), cvRound(corners[i].y - region_size.height),
181 Mat img_roi = img(roi);

Completed in 867 milliseconds

1 2 34 5 6 7 8 91011>>