cv2.rectangle(img = image, pt1=(xmin, ymin), pt2=(xmax, ymax), color=(255,0,255), thickness=4, lineType=cv2.LINE_AA) # thickness= TypeError: Required argument 'rec' (pos 2) not found
时间: 2023-09-13 08:05:10 浏览: 218
设置窗体渐变色背景图像,C#源代码 Rectangle MyRect = this.ClientRectangle;
4星 · 用户满意度95%
根据您提供的代码,错误信息指示缺少名为'rec'的必需参数。这是因为cv2.rectangle()函数需要一个名为'rec'的参数,它代表矩形的坐标。根据您提供的代码,您应该将'rec'参数设置为(pt1, pt2)元组,如下所示:
```
cv2.rectangle(img=image, rec=(pt1, pt2), color=(255,0,255), thickness=4, lineType=cv2.LINE_AA)
```
请注意,这里的'rec'参数已更改。我希望这可以帮助您解决问题。
阅读全文