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的主要内容,如果未能解决你的问题,请参考以下文章

rectangle

85. Maximal Rectangle

cv2.rectangle() 是不是有一个名为“rec”的参数?

cv2.rectangle:TypeError:由名称('厚度')和位置(4)给出的参数

SCU 4440 Rectangle (思维+暴力)

C++ 中 cv::Rectangle 的问题