Home | History | Annotate | Download | only in src

Lines Matching refs:step

68         int step, float* dist, int dststep, CvSize size, const float* metrics )
77 step /= sizeof(temp[0]);
80 icvInitTopBottom( temp, step, size, BORDER );
86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
97 int t0 = tmp[j-step-1] + DIAG_DIST;
98 int t = tmp[j-step] + HV_DIST;
100 t = tmp[j-step+1] + DIAG_DIST;
113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
120 int t = tmp[j+step+1] + DIAG_DIST;
122 t = tmp[j+step] + HV_DIST;
124 t = tmp[j+step-1] + DIAG_DIST;
140 int step, float* dist, int dststep, CvSize size, const float* metrics )
150 step /= sizeof(temp[0]);
153 icvInitTopBottom( temp, step, size, BORDER );
159 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
170 int t0 = tmp[j-step*2-1] + LONG_DIST;
171 int t = tmp[j-step*2+1] + LONG_DIST;
173 t = tmp[j-step-2] + LONG_DIST;
175 t = tmp[j-step-1] + DIAG_DIST;
177 t = tmp[j-step] + HV_DIST;
179 t = tmp[j-step+1] + DIAG_DIST;
181 t = tmp[j-step+2] + LONG_DIST;
194 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
201 int t = tmp[j+step*2+1] + LONG_DIST;
203 t = tmp[j+step*2-1] + LONG_DIST;
205 t = tmp[j+step+2] + LONG_DIST;
207 t = tmp[j+step+1] + DIAG_DIST;
209 t = tmp[j+step] + HV_DIST;
211 t = tmp[j+step-1] + DIAG_DIST;
213 t = tmp[j+step-2] + LONG_DIST;
229 int step, float* dist, int dststep, int* labels, int lstep,
241 step /= sizeof(temp[0]);
245 icvInitTopBottom( temp, step, size, BORDER );
251 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
269 t = tmp[j-step*2-1] + LONG_DIST;
275 t = tmp[j-step*2+1] + LONG_DIST;
281 t = tmp[j-step-2] + LONG_DIST;
287 t = tmp[j-step-1] + DIAG_DIST;
293 t = tmp[j-step] + HV_DIST;
299 t = tmp[j-step+1] + DIAG_DIST;
305 t = tmp[j-step+2] + LONG_DIST;
328 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER;
337 int t = tmp[j+step*2+1] + LONG_DIST;
343 t = tmp[j+step*2-1] + LONG_DIST;
349 t = tmp[j+step+2] + LONG_DIST;
355 t = tmp[j+step+1] + DIAG_DIST;
361 t = tmp[j+step] + HV_DIST;
367 t = tmp[j+step-1] + DIAG_DIST;
373 t = tmp[j+step-2] + LONG_DIST;
478 sstep = src->step;
479 dstep = dst->step / sizeof(float);
539 float* d = (float*)(dst->data.ptr + i*dst->step);
634 int srcstep = src->step;
635 int dststep = dst->step;
798 IPPI_CALL( ipp_func( src->data.ptr, src->step,
799 dst->data.fl, dst->step, size,
805 IPPI_CALL( ipp_inp_func( src->data.ptr, src->step, size, _imask ));
823 func( src->data.ptr, src->step, temp->data.i, temp->step,
824 dst->data.fl, dst->step, size, _mask );
847 icvDistanceTransformEx_5x5_C1R( src_copy->data.ptr, src_copy->step, temp->data.i, temp->step,
848 dst->data.fl, dst->step, labels->data.i, labels->step, size, _mask );