HomeSort by relevance Sort by last modified time
    Searched refs:srcroi (Results 1 - 7 of 7) sorted by null

  /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...]
_cvimgproc.h 79 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi,
_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...]
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/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/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/imgproc/src/
imgwarp.cpp     [all...]

Completed in 1841 milliseconds