HomeSort by relevance Sort by last modified time
    Searched defs:tsrc (Results 1 - 4 of 4) sorted by null

  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 222 uchar* tsrc = src; local
227 int max_count = (int)(line_end - tsrc);
238 tsrc[len1] = (uchar)code;
242 tsrc += len1;
248 if( len > line_end - tsrc )
254 memset( tsrc, code, len );
255 tsrc += len;
258 if( tsrc >= line_end )
260 tsrc = src;
297 uchar* tsrc = src local
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 1053 uchar *tsrc = 0; local
    [all...]
  /external/opencv/cv/include/
cvcompat.h 155 CvMat tsrc, tdst; local
157 cvReshape( src, &tsrc, 3, 0 );
160 cvPerspectiveTransform( &tsrc, &tdst, mat );
    [all...]
  /external/opencv/cv/src/
cvimgwarp.cpp 140 const uchar* tsrc; local
143 tsrc = src + srcstep*t;
150 uchar t0 = tsrc[x_ofs[x]];
151 uchar t1 = tsrc[x_ofs[x+1]];
158 dst[x] = tsrc[x_ofs[x]];
162 *(ushort*)(dst + x*2) = *(ushort*)(tsrc + x_ofs[x]);
167 const uchar* _tsrc = tsrc + x_ofs[x];
173 *(int*)(dst + x*4) = *(int*)(tsrc + x_ofs[x]);
178 const ushort* _tsrc = (const ushort*)(tsrc + x_ofs[x]);
185 CV_MEMCPY_INT( dst + x*pix_size, tsrc + x_ofs[x], pix_size4 )
    [all...]

Completed in 140 milliseconds