Home | History | Annotate | Download | only in test

Lines Matching defs:max_sz

1732     float max_sz;
1736 max_sz = MAX(axes.width, axes.height);
1740 center.x = (float)(img_size.width*0.5 + (cvtest::randReal(rng)-0.5)*(img_size.width - max_sz*2)*0.8);
1741 center.y = (float)(img_size.height*0.5 + (cvtest::randReal(rng)-0.5)*(img_size.height - max_sz*2)*0.8);
1743 assert( 0 < center.x - max_sz && center.x + max_sz < img_size.width &&
1744 0 < center.y - max_sz && center.y + max_sz < img_size.height );