/external/opencv/cv/src/ |
D | cvutils.cpp | 111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, in icvCopyReplicateBorder_8u() argument 132 return ifunc( src, srcstep, srcroi, dstroi, top, left ); in icvCopyReplicateBorder_8u() 147 return func( src, srcstep, srcroi, dst, dststep, dstroi, top, left ); in icvCopyReplicateBorder_8u() 159 srcroi.width *= cn; in icvCopyReplicateBorder_8u() 166 for( j = 0; j < srcroi.width; j++ ) in icvCopyReplicateBorder_8u() 170 for( j = left+srcroi.width; j < dstroi.width; j++ ) in icvCopyReplicateBorder_8u() 172 if( i >= top && i < top + srcroi.height - 1 ) in icvCopyReplicateBorder_8u() 178 srcroi.width *= cn; in icvCopyReplicateBorder_8u() 185 for( j = 0; j < srcroi.width; j++ ) in icvCopyReplicateBorder_8u() 189 for( j = left+srcroi.width; j < dstroi.width; j++ ) in icvCopyReplicateBorder_8u() [all …]
|
D | _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, \
|
D | _cvimgproc.h | 79 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi,
|
D | cvimgwarp.cpp | 617 ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, 1066 ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, 1150 CvRect srcroi = {0, 0, ssize.width, ssize.height}; in cvWarpAffine() local 1157 if( ipp_func( src->data.ptr, ssize, srcstep, srcroi, in cvWarpAffine() 1342 ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, 1423 CvRect srcroi = {0, 0, ssize.width, ssize.height}; in cvWarpPerspective() local 1430 status = ipp_func( src->data.ptr, ssize, srcstep, srcroi, in cvWarpPerspective() 1448 status = ipp_func( src->data.ptr, ssize, srcstep, srcroi, in cvWarpPerspective() 1767 const void* src, CvSize srcsize, int srcstep, CvRect srcroi, 2065 CvRect srcroi = {0, 0, ssize.width, ssize.height}; in cvRemap() local [all …]
|
/external/opencv3/modules/cudawarping/src/ |
D | warp.cpp | 159 NppiRect srcroi; in call() local 160 srcroi.x = 0; in call() 161 srcroi.y = 0; in call() 162 srcroi.height = src.rows; in call() 163 srcroi.width = src.cols; in call() 173 nppSafeCall( func(src.ptr<npp_type>(), srcsz, static_cast<int>(src.step), srcroi, in call() 489 NppiRect srcroi; in call() local 490 srcroi.x = srcroi.y = 0; in call() 491 srcroi.height = src.rows; in call() 492 srcroi.width = src.cols; in call() [all …]
|
/external/opencv3/modules/core/src/ |
D | copy.cpp | 957 void copyMakeBorder_8u( const uchar* src, size_t srcstep, cv::Size srcroi, in copyMakeBorder_8u() argument 972 cv::AutoBuffer<int> _tab((dstroi.width - srcroi.width)*cn); in copyMakeBorder_8u() 974 int right = dstroi.width - srcroi.width - left; in copyMakeBorder_8u() 975 int bottom = dstroi.height - srcroi.height - top; in copyMakeBorder_8u() 979 j = cv::borderInterpolate(i - left, srcroi.width, borderType)*cn; in copyMakeBorder_8u() 986 j = cv::borderInterpolate(srcroi.width + i, srcroi.width, borderType)*cn; in copyMakeBorder_8u() 991 srcroi.width *= cn; in copyMakeBorder_8u() 998 for( i = 0; i < srcroi.height; i++, dstInner += dststep, src += srcstep ) in copyMakeBorder_8u() 1001 memcpy(dstInner, src, srcroi.width*elemSize); in copyMakeBorder_8u() 1010 idstInner[j + srcroi.width] = isrc[tab[j + left]]; in copyMakeBorder_8u() [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | imgwarp.cpp | 5420 IppiRect srcroi = { 0, 0, src.cols, src.rows }; in operator ()() local 5435 IppStatus status = func( src.ptr(), srcsize, (int)src.step[0], srcroi, dst.ptr(), in operator ()() 6049 IppiRect srcroi = {0, 0, src.cols, src.rows}; in operator ()() local 6064 …IppStatus status = func(src.ptr(), srcsize, (int)src.step[0], srcroi, dst.ptr(), (int)dst.step[0],… in operator ()()
|