Home | History | Annotate | Download | only in src

Lines Matching refs:step

273 #define CV_SUM_PTRS( p0, p1, p2, p3, sum, rect, step )                    \
275 (p0) = sum + (rect).x + (step) * (rect).y, \
277 (p1) = sum + (rect).x + (rect).width + (step) * (rect).y, \
279 (p2) = sum + (rect).x + (step) * ((rect).y + (rect).height), \
281 (p3) = sum + (rect).x + (rect).width + (step) * ((rect).y + (rect).height)
283 #define CV_TILTED_PTRS( p0, p1, p2, p3, tilted, rect, step ) \
285 (p0) = tilted + (rect).x + (step) * (rect).y, \
287 (p1) = tilted + (rect).x - (rect).height + (step) * ((rect).y + (rect).height), \
289 (p2) = tilted + (rect).x + (rect).width + (step) * ((rect).y + (rect).width), \
292 + (step) * ((rect).y + (rect).width + (rect).height)
299 #define CV_SUM_OFS( p0, p1, p2, p3, sum, rect, step ) \
301 (p0) = sum + (rect).x + (step) * (rect).y, \
303 (p1) = sum + (rect).x + (rect).width + (step) * (rect).y, \
305 (p2) = sum + (rect).x + (step) * ((rect).y + (rect).height), \
307 (p3) = sum + (rect).x + (rect).width + (step) * ((rect).y + (rect).height)
309 #define CV_TILTED_OFS( p0, p1, p2, p3, tilted, rect, step ) \
311 (p0) = tilted + (rect).x + (step) * (rect).y, \
313 (p1) = tilted + (rect).x - (rect).height + (step) * ((rect).y + (rect).height), \
315 (p2) = tilted + (rect).x + (rect).width + (step) * ((rect).y + (rect).width), \
318 + (step) * ((rect).y + (rect).width + (rect).height)
355 void setOffsets( const Feature& _f, int step, int tofs );
444 void setOffsets( const Feature& _f, int step );