Lines Matching full:step
70 uchar step; //local-optimal step
181 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
186 CELL(d,d-2).step = ICV_DP_STEP_UP;
189 CELL(1,0).step = ICV_DP_STEP_LEFT;
203 //check left step
206 //check up step
207 if( _cell[d+1].step != ICV_DP_STEP_DIAG && e0 )
211 if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
222 _cell[d].step = (uchar)t;
227 _cell[d].step = ICV_DP_STEP_DIAG;
235 _cell[d].step = ICV_DP_STEP_LEFT;
240 _cell[d].step = ICV_DP_STEP_UP;
245 else if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
250 _cell[d].step = ICV_DP_STEP_LEFT;
255 _cell[d].step = ICV_DP_STEP_DIAG;
261 _cell[d].step = ICV_DP_STEP_LEFT;
286 while( CELL(d,x).step == ICV_DP_STEP_UP ) d++;
287 if ( CELL(d,x).step == ICV_DP_STEP_DIAG )
290 while( CELL(d,x).step == ICV_DP_STEP_DIAG )
541 cvGetMatSize( src1 ), src1->step,