Home | History | Annotate | Download | only in src

Lines Matching defs:dst

46                    uchar * dst, int *dst_num, CvSize src_size, CvPoint start, CvPoint end )
52 if( !src || !dst || (src_size.width | src_size.height) < 0 ||
85 for( i = dx; i >= 0; i -= 2, dst += 3 )
89 dst[0] = src[0];
90 dst[1] = src[1];
91 dst[2] = src[2];
108 for( i = dy; i >= 0; i -= 2, dst += 3 )
112 dst[0] = src[0];
113 dst[1] = src[1];
114 dst[2] = src[2];
125 uchar * dst, int dst_step, CvSize dst_size, CvPoint start, CvPoint end )
131 if( !src || !dst || (dst_size.width | dst_size.height) < 0 ||
147 dst += start.y * dst_step + start.x * 3;
164 dst[0] = src[0];
165 dst[1] = src[1];
166 dst[2] = src[2];
168 dst += (dst_step & mask) + 3;
182 dst[0] = src[0];
183 dst[1] = src[1];
184 dst[2] = src[2];
186 dst += dst_step + (mask & 3);
199 uchar * dst, /* dest buffers */
230 cvSampleLine( &mat, start, end, dst + curr_dst, 8 );
245 uchar * dst, /* dest image */
262 cvInitMatHeader( &mat, dst_size.height, dst_size.width, CV_8UC3, dst, dst_step );
290 dst, /* dest image */
323 uchar *src = img, *dst = img + img_step;
330 for( y = 1; y < img_size.height; y++, src = dst, dst += img_step )
337 if( dst[x] == 0 )
338 dst[x] = src[x];
344 if( dst[x] == 0 && dst[x + 1] == 0 && dst[x + 2] == 0 )
346 dst[x] = src[x];
347 dst[x + 1] = src[x + 1];
348 dst[x + 2] = src[x + 2];
407 uchar * dst, /* dest buffers */
429 dst, /* dest buffers */