Home | History | Annotate | Download | only in src

Lines Matching refs:distance

123     int distance = cvRound(r1->width*0.2);
125 return r2->x <= r1->x + distance &&
126 r2->x >= r1->x - distance &&
127 r2->y <= r1->y + distance &&
128 r2->y >= r1->y - distance &&
1511 int distance = cvRound( r2.rect.width * 0.2 );
1514 r1.rect.x >= r2.rect.x - distance &&
1515 r1.rect.y >= r2.rect.y - distance &&
1516 r1.rect.x + r1.rect.width <= r2.rect.x + r2.rect.width + distance &&
1517 r1.rect.y + r1.rect.height <= r2.rect.y + r2.rect.height + distance &&