Home | History | Annotate | Download | only in src

Lines Matching refs:step

70     uchar  step; //local-optimal step
183 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
188 CELL(d,d-2).step = ICV_DP_STEP_UP;
191 CELL(1,0).step = ICV_DP_STEP_LEFT;
205 //check left step
208 //check up step
209 if( _cell[d+1].step != ICV_DP_STEP_DIAG && e0 )
213 if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
224 _cell[d].step = (uchar)t;
229 _cell[d].step = ICV_DP_STEP_DIAG;
237 _cell[d].step = ICV_DP_STEP_LEFT;
242 _cell[d].step = ICV_DP_STEP_UP;
247 else if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
252 _cell[d].step = ICV_DP_STEP_LEFT;
257 _cell[d].step = ICV_DP_STEP_DIAG;
263 _cell[d].step = ICV_DP_STEP_LEFT;
288 while( CELL(d,x).step == ICV_DP_STEP_UP ) d++;
289 if ( CELL(d,x).step == ICV_DP_STEP_DIAG )
292 while( CELL(d,x).step == ICV_DP_STEP_DIAG )
543 cvGetMatSize( src1 ), src1->step,