Searched refs:dst_step (Results 1 - 25 of 63) sorted by relevance

123

/external/opencv3/modules/core/src/opencl/
H A Dflip.cl53 __global uchar * dstptr, int dst_step, int dst_offset,
63 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
64 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(x, TSIZE, dst_offset));
77 dst_index0 += dst_step;
78 dst_index1 -= dst_step;
84 __global uchar * dstptr, int dst_step, int dst_offset,
94 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
95 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(cols - x - 1, TSIZE, dst_offset));
123 dst_index0 += dst_step;
124 dst_index1 -= dst_step;
[all...]
H A Dconvert.cl55 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
64 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(dstT), dst_offset));
66 for (int y = y0, y1 = min(dst_rows, y0 + rowsPerWI); y < y1; ++y, src_index += src_step, dst_index += dst_step)
H A Dmulspectrums.cl58 __global uchar * dstptr, int dst_step, int dst_offset,
68 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(float2), dst_offset));
71 src1_index += src1_step, src2_index += src2_step, dst_index += dst_step)
H A Dsplit_merge.cl54 __global uchar * dstptr, int dst_step, int dst_offset,
63 int dst_index = mad24(dst_step, y0, mad24(x, (int)sizeof(T) * cn, dst_offset));
65 for (int y = y0, y1 = min(rows, y0 + rowsPerWI); y < y1; ++y, dst_index += dst_step)
H A Dinrange.cl53 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
68 int dst_index = mad24(y0, dst_step, mad24(x, colsPerWI, dst_offset));
74 for (int y = y0, y1 = min(dst_rows, y0 + rowsPerWI); y < y1; ++y, src1_index += src1_step, dst_index += dst_step)
H A Dtranspose.cl61 __global uchar * dstptr, int dst_step, int dst_offset)
107 int index_dst = mad24(y_index, dst_step, mad24(x_index, TSIZE, dst_offset));
114 index_dst = mad24(BLOCK_ROWS, dst_step, index_dst);
/external/opencv/cv/src/
H A Dcvthresh.cpp45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step, argument
87 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
113 icvThresh_32f_C1R( const float *src, int src_step, float *dst, int dst_step, argument
126 dst_step /= sizeof(dst[0]);
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
153 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
306 int src_step, dst_step; local
[all...]
H A D_cvimgproc.h52 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
105 uchar* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
108 float* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
111 float* dst, int dst_step, CvSize win_size, CvPoint2D32f center );
115 uchar* dst, int dst_step, CvSize win_size, const float *matrix );
118 float* dst, int dst_step, CvSize win_size, const float *matrix );
121 float* dst, int dst_step, CvSize win_size, const float *matrix );
H A Dcvmorph.cpp98 static void icvErodeRectCol_8u( const uchar** src, uchar* dst, int dst_step,
100 static void icvErodeRectCol_16u( const ushort** src, ushort* dst, int dst_step,
102 static void icvErodeRectCol_32f( const int** src, int* dst, int dst_step,
104 static void icvDilateRectCol_8u( const uchar** src, uchar* dst, int dst_step,
106 static void icvDilateRectCol_16u( const ushort** src, ushort* dst, int dst_step,
108 static void icvDilateRectCol_32f( const int** src, int* dst, int dst_step,
111 static void icvErodeAny_8u( const uchar** src, uchar* dst, int dst_step,
113 static void icvErodeAny_16u( const ushort** src, ushort* dst, int dst_step,
115 static void icvErodeAny_32f( const int** src, int* dst, int dst_step,
117 static void icvDilateAny_8u( const uchar** src, uchar* dst, int dst_step,
[all...]
H A Dcvsamplers.cpp149 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
172 dst_step /= sizeof(dst[0]); \
182 dst, dst_step*sizeof(dst[0]), \
187 dst += dst_step ) \
222 for( i = 0; i < win_size.height; i++, dst += dst_step ) \
268 dsttype* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) \
284 dst_step /= sizeof( dst[0] ); \
293 dst += dst_step ) \
324 for( i = 0; i < win_size.height; i++, dst += dst_step ) \
394 float* dst, int dst_step, CvSiz
392 icvGetRectSubPix_8u32f_C1R( const uchar* src, int src_step, CvSize src_size, float* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) argument
548 int cn, src_step, dst_step; local
[all...]
/external/opencv3/modules/imgproc/src/opencl/
H A Dthreshold.cl55 __global uchar * dstptr, int dst_step, int dst_offset, int rows, int cols,
64 int dst_index = mad24(gy, dst_step, mad24(gx, (int)sizeof(T), dst_offset));
88 dst_index += dst_step;
H A Dcvtcolor.cl134 __global uchar * dstptr, int dst_step, int dst_offset,
143 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dst_offset));
160 dst_index += dst_step;
167 __global uchar * dstptr, int dst_step, int dst_offset,
176 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dst_offset));
195 dst_index += dst_step;
208 __global uchar* dstptr, int dst_step, int dt_offset,
217 int dst_index = mad24(y, dst_step, mad24(x, dcnbytes, dt_offset));
247 dst_index += dst_step;
258 __global uchar* dstptr, int dst_step, in
[all...]
H A Dblend_linear.cl60 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols)
71 int dst_index = mad24(y, dst_step, dst_offset + x * cn * (int)sizeof(T));
H A Dprecornerdetect.cl51 __global uchar * dstptr, int dst_step, int dst_offset,
64 int dst_index = mad24(dst_step, y, (int)sizeof(float) * x + dst_offset);
H A Dremap.cl144 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
158 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
162 map1_index += map1_step, map2_index += map2_step, dst_index += dst_step)
191 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
201 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
206 map_index += map_step, dst_index += dst_step)
231 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
241 int dst_index = mad24(y, dst_step, mad24(x, TSIZE, dst_offset));
246 map_index += map_step, dst_index += dst_step)
271 __global uchar * dstptr, int dst_step, in
[all...]
H A Dintegral_sum.cl94 __global uchar *dst_ptr, int dst_step, int dst_offset, int rows, int cols
116 dst_offset += dst_step;
120 dst = (__global sumT *)(dst_ptr + mad24(x, dst_step, dst_offset));
166 //int dst_index = dst_offset + dst_step * LOCAL_SUM_COLS * gid + sizeof(sumT) * y + sizeof(sumT) * lid;
167 int dst_index = mad24(dst_step, LOCAL_SUM_SIZE * gid, mad24((int)sizeof(sumT), y + lid, dst_offset));
178 dst_index += dst_step;
H A Dcorner.cl96 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols, float k)
107 int dst_x_off = (dst_offset % dst_step) >> 2;
108 int dst_y_off = dst_offset / dst_step;
194 int dst_index = mad24(dst_step, dst_startY, (int)sizeof(float) * (dst_startX + col - anX));
200 int dst_index = mad24(dst_step, dst_startY + 1, (int)sizeof(float) * (dst_startX + col - anX));
207 int dst_index = mad24(dst_step, dst_startY, (int)sizeof(float) * (dst_startX + col - anX));
215 int dst_index = mad24(dst_step, dst_startY + 1, (int)sizeof(float) * (dst_startX + col - anX));
H A Dpyr_up.cl76 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
127 storepix(convertToT(sum), dstData + y * dst_step + x * PIXSIZE);
132 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
216 storepix(convertToT(sum), dstData + dst_y * dst_step + dst_x * PIXSIZE);
222 storepix(convertToT(sum), dstData + dst_y * dst_step + (dst_x+1) * PIXSIZE);
227 storepix(convertToT(sum), dstData + (dst_y+1) * dst_step + dst_x * PIXSIZE);
232 storepix(convertToT(sum), dstData + (dst_y+1) * dst_step + (dst_x+1) * PIXSIZE);
H A Dresize.cl134 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
163 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
170 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
219 storepix(uval, dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
226 __global uchar * dstptr, int dst_step, int dst_offset, int dst_rows, int dst_cols,
240 dstptr + mad24(dy, dst_step, mad24(dx, TSIZE, dst_offset)));
249 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols)
256 int dst_index = mad24(dy, dst_step, dst_offset);
282 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
291 int dst_index = mad24(dy, dst_step, dst_offse
[all...]
/external/opencv/cvaux/src/
H A Dcvlines.cpp125 uchar * dst, int dst_step, CvSize dst_size, CvPoint start, CvPoint end )
132 dst_step < dst_size.width * 3 ||
147 dst += start.y * dst_step + start.x * 3;
151 dst_step = (dst_step ^ i) - i;
168 dst += (dst_step & mask) + 3;
186 dst += dst_step + (mask & 3);
246 int dst_step, /* dest image step */
262 cvInitMatHeader( &mat, dst_size.height, dst_size.width, CV_8UC3, dst, dst_step );
291 dst_step, /* des
242 icvPostWarpImage8uC3R( int numLines, uchar * src, int *src_nums, uchar * dst, int dst_step, CvSize dst_size, int *scanlines ) argument
[all...]
/external/opencv/cxcore/src/
H A Dcxcmp.cpp255 int src1_step, src2_step, src3_step, dst_step; local
315 src1_step = src2_step = src3_step = dst_step = CV_STUB_STEP;
323 dst_step = dst->step;
335 src3->data.ptr, src3_step, dst->data.ptr, dst_step, size ));
354 int src1_step, dst_step; local
396 src1_step = dst_step = CV_STUB_STEP;
402 dst_step = dst->step;
417 dst_step, size, buf ));
566 int src1_step, src2_step, dst_step; local
644 src1_step = src2_step = dst_step
704 int src1_step, dst_step; local
974 int src1_step, src2_step, dst_step; local
1075 int src1_step, dst_step; local
1428 int src1_step, src2_step, dst_step; local
1502 int src_step, dst_step; local
[all...]
H A Dcxlogic.cpp201 int src_step, dst_step, tdst_step, mask_step; local
304 dst_step = dst->step;
319 src_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
326 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
357 int src1_step, src2_step, tdst_step, dst_step, mask_step; local
472 dst_step = dst->step;
486 src1_step = src2_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
495 dst_step, tsize, mask->data.ptr + y*mask->step, mask_step ));
629 int src_step, dst_step; local
679 dst_step
[all...]
/external/opencv3/modules/superres/src/opencl/
H A Dsuperres_btvl1.cl83 __global uchar * dstptr, int dst_step, int dst_offset, int scale)
91 int dst_index = mad24(y * scale, dst_step, sz * x * scale * cn + dst_offset);
119 __global uchar * dst, int dst_step, int dst_offset, int rows, int cols)
125 *(__global float *)(dst + mad24(y, dst_step, sz * x + dst_offset)) =
131 __global uchar * dst, int dst_step, int dst_offset, int dst_rows, int dst_cols,
152 dst_elem_at(dst, y, dst_step, x) = dstVal;
171 __global float * dstptr = (__global float *)(dst + mad24(y, dst_step, 3 * sz * x + dst_offset + 0));
/external/opencv3/modules/imgproc/src/
H A Dthresh.cpp57 size_t dst_step = _dst.step; local
63 src_step = dst_step = roi.width;
80 if (_src.data == _dst.data && ippiThreshold_GT_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh) >= 0)
86 if (ippiThreshold_GT_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh) >= 0)
95 if (_src.data == _dst.data && ippiThreshold_LTVal_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh+1, 0) >= 0)
101 if (ippiThreshold_LTVal_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh+1, 0) >= 0)
110 if (_src.data == _dst.data && ippiThreshold_GTVal_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh, 0) >= 0)
116 if (ippiThreshold_GTVal_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh, 0) >= 0)
176 uchar* dst = _dst.ptr() + dst_step*i;
297 uchar* dst = _dst.ptr() + dst_step*
397 size_t dst_step = _dst.step/sizeof(dst[0]); local
666 size_t dst_step = _dst.step/sizeof(dst[0]); local
[all...]
H A Dsamplers.cpp131 _DTp* dst, size_t dst_step, Size win_size, Point2f center, int cn )
156 dst_step /= sizeof(dst[0]);
165 for( i = 0; i < win_size.height; i++, src += src_step, dst += dst_step )
188 for( i = 0; i < win_size.height; i++, dst += dst_step )
221 float* dst, size_t dst_step, Size win_size, Point2f center0, int cn )
247 dst_step /= sizeof(dst[0]);
252 for( ; win_size.height--; src += src_step, dst += dst_step )
266 (src, src_step, src_size, dst, dst_step, win_size, center0, cn );
272 float* dst, size_t dst_step, Size win_size,
280 dst_step /
130 getRectSubPix_Cn_(const _Tp* src, size_t src_step, Size src_size, _DTp* dst, size_t dst_step, Size win_size, Point2f center, int cn ) argument
219 getRectSubPix_8u32f( const uchar* src, size_t src_step, Size src_size, float* dst, size_t dst_step, Size win_size, Point2f center0, int cn ) argument
271 getQuadrangleSubPix_8u32f_CnR( const uchar* src, size_t src_step, Size src_size, float* dst, size_t dst_step, Size win_size, const double *matrix, int cn ) argument
[all...]

Completed in 281 milliseconds

123