| /external/opencv/cv/src/ |
| cvutils.cpp | 111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, 132 return ifunc( src, srcstep, srcroi, dstroi, top, left ); 147 return func( src, srcstep, srcroi, dst, dststep, dstroi, top, left ); 159 srcroi.width *= cn; 166 for( j = 0; j < srcroi.width; j++ ) 170 for( j = left+srcroi.width; j < dstroi.width; j++ ) 172 if( i >= top && i < top + srcroi.height - 1 ) 178 srcroi.width *= cn; 185 for( j = 0; j < srcroi.width; j++ ) 189 for( j = left+srcroi.width; j < dstroi.width; j++ [all...] |
| _cvipp.h | 201 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 222 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 239 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 257 (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ 274 ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ [all...] |
| _cvimgproc.h | 79 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi,
|
| cvimgwarp.cpp | 1150 CvRect srcroi = {0, 0, ssize.width, ssize.height}; local 1423 CvRect srcroi = {0, 0, ssize.width, ssize.height}; local 2065 CvRect srcroi = {0, 0, ssize.width, ssize.height}; local [all...] |
| /external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/ |
| NPP_staging.hpp | 310 * \param srcROI [IN] Source image region of interest 325 NcvRect32u srcROI, 342 * \param srcRoi [IN] Region of interest in the source image 351 NcvSize32u srcRoi, Ncv32u scale, 362 NcvSize32u srcRoi, Ncv32u scale, 373 NcvSize32u srcRoi, Ncv32u scale, 384 NcvSize32u srcRoi, Ncv32u scale, 395 NcvSize32u srcRoi, Ncv32u scale, 406 NcvSize32u srcRoi, Ncv32u scale, 417 * \param srcRoi [IN] Region of interest in the source imag [all...] |
| NCVHaarObjectDetection.hpp | 361 NcvSize32u srcRoi,
|
| /external/opencv3/modules/cudalegacy/src/cuda/ |
| NPP_staging.cu | 750 NcvSize32u srcRoi, Ncv32u scale, 754 ncvAssertReturn(srcRoi.width > 0 && srcRoi.height > 0, NPPST_INVALID_ROI); 756 ncvAssertReturn(srcStep >= (Ncv32u)(srcRoi.width) * sizeof(T) && 757 dstStep >= (Ncv32u)(srcRoi.width * sizeof(T) / scale), NPPST_INVALID_STEP); 762 dstRoi.width = srcRoi.width / scale; 763 dstRoi.height = srcRoi.height / scale; 785 ncvAssertCUDAReturn(cudaBindTexture(&alignmentOffset, tex32u, d_src, cfdTexSrc, srcRoi.height * srcStep * sizeof(T)), NPPST_TEXTURE_BIND_ERROR); 793 ncvAssertCUDAReturn(cudaBindTexture(&alignmentOffset, tex64u, d_src, cfdTexSrc, srcRoi.height * srcStep * sizeof(T)), NPPST_TEXTURE_BIND_ERROR); 812 NcvSize32u srcRoi, Ncv32u scale [all...] |
| NCVBroxOpticalFlow.cu | [all...] |
| NCVHaarObjectDetection.cu | [all...] |
| /external/opencv3/modules/core/src/ |
| copy.cpp | 957 void copyMakeBorder_8u( const uchar* src, size_t srcstep, cv::Size srcroi, 972 cv::AutoBuffer<int> _tab((dstroi.width - srcroi.width)*cn); 974 int right = dstroi.width - srcroi.width - left; 975 int bottom = dstroi.height - srcroi.height - top; 979 j = cv::borderInterpolate(i - left, srcroi.width, borderType)*cn; 986 j = cv::borderInterpolate(srcroi.width + i, srcroi.width, borderType)*cn; 991 srcroi.width *= cn; 998 for( i = 0; i < srcroi.height; i++, dstInner += dststep, src += srcstep ) 1001 memcpy(dstInner, src, srcroi.width*elemSize) [all...] |
| /external/opencv3/modules/cudawarping/src/ |
| warp.cpp | 142 typedef NppStatus (*func_t)(const npp_type* pSrc, NppiSize srcSize, int srcStep, NppiRect srcRoi, npp_type* pDst, 159 NppiRect srcroi; 160 srcroi.x = 0; 161 srcroi.y = 0; 162 srcroi.height = src.rows; 163 srcroi.width = src.cols; 173 nppSafeCall( func(src.ptr<npp_type>(), srcsz, static_cast<int>(src.step), srcroi, 489 NppiRect srcroi; 490 srcroi.x = srcroi.y = 0 [all...] |
| /external/opencv3/modules/cudafilters/src/ |
| filtering.cpp | 139 GpuMat srcRoi = srcBorder_(Rect(ksize_.width, ksize_.height, src.cols, src.rows)); 156 nppSafeCall( func_(srcRoi.ptr<Npp8u>(), static_cast<int>(srcRoi.step), 574 GpuMat srcRoi = srcBorder_(Rect(ksize.width, ksize.height, src.cols, src.rows)); 602 nppSafeCall( func_(srcRoi.ptr<Npp8u>(), static_cast<int>(srcRoi.step), dst.ptr<Npp8u>(), static_cast<int>(dst.step), 838 GpuMat srcRoi = srcBorder_(Rect(ksize_.width, ksize_.height, src.cols, src.rows)); 855 nppSafeCall( func_(srcRoi.ptr<Npp8u>(), static_cast<int>(srcRoi.step), dst.ptr<Npp8u>(), static_cast<int>(dst.step), [all...] |
| /external/opencv3/modules/cudalegacy/test/ |
| TestHaarCascadeApplication.cpp | 156 NcvSize32s srcRoi, srcIIRoi, searchRoi; 157 srcRoi.width = this->width; 158 srcRoi.height = this->height; 159 srcIIRoi.width = srcRoi.width + 1; 160 srcIIRoi.height = srcRoi.height + 1;
|
| /external/opencv3/modules/imgproc/src/ |
| pyramids.cpp | [all...] |
| filterengine.hpp | 234 virtual int start(const Mat& src, const Rect& srcRoi = Rect(0,0,-1,-1), 239 //! applies filter to the specified ROI of the image. if srcRoi=(0,0,-1,-1), the whole image is filtered. 241 const Rect& srcRoi = Rect(0,0,-1,-1),
|
| corner.cpp | 574 IppiSize srcRoi = { src.cols, src.rows }; 575 IppStatus ok = getBufferSizeFunc(srcRoi, kerSize, blockSize, &bufferSize); 579 ok = minEigenValFunc(src.ptr(), (int) src.step, dst.ptr<Ipp32f>(), (int) dst.step, srcRoi, kerType, kerSize, blockSize, buffer); 581 if (ok >= 0) ok = ippiMulC_32f_C1IR(norm_coef, dst.ptr<Ipp32f>(), (int) dst.step, srcRoi);
|
| filter.cpp | 266 Rect srcRoi = _srcRoi; 268 if( srcRoi == Rect(0,0,-1,-1) ) 269 srcRoi = Rect(0,0,src.cols,src.rows); 271 CV_Assert( srcRoi.x >= 0 && srcRoi.y >= 0 && 272 srcRoi.width >= 0 && srcRoi.height >= 0 && 273 srcRoi.x + srcRoi.width <= src.cols && 274 srcRoi.y + srcRoi.height <= src.rows ) [all...] |
| imgwarp.cpp | [all...] |