rectangle
Posted 任重道远-HSY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rectangle相关的知识,希望对你有一定的参考价值。
1 rectangle( rook_image,
2 Point( 0, 7*w/8.0 ),
3 Point( w, w),
4 Scalar( 0, 255, 255 ),
5 -1,
6 8 );
- 矩形将被画到图像 rook_image 上
- 矩形两个对角顶点为 Point( 0, 7*w/8.0 ) 和 Point( w, w)
- 矩形的颜色为 Scalar(0, 255, 255) ,既BGR格式下的 黄色
- 由于线粗为 -1, 此矩形将被填
1 Rect in = boundingRect(InputArray points);
返回值in是点集最小外矩形左定点坐标和矩形的长宽;
int a = in.height;//矩形的宽
int b=in.width;//表示矩形的宽
以上是关于rectangle的主要内容,如果未能解决你的问题,请参考以下文章
cv2.rectangle() 是不是有一个名为“rec”的参数?