51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Python Opencv 错误记录

本文记录在使用Python中的Opencv库的过程中踩过的坑,以史为鉴。

cv2.rectangle {#cv2-rectangle}

问题 {#问题}

  • {TypeError}an integer is required (got type tuple)
  • {TypeError}argument for rectangle() given by name ('color') and position (3)
  • {TypeError}argument for rectangle() given by name ('thickness') and position (4)
  • {TypeError}an integer is required (got type tuple)

解决办法 {#解决办法}

  • 坐标pt1,pt2需要是整型
  • img=np.ascontiguousarray(img),然后调用rectangle

参考资料 {#参考资料}



文章链接:
https://www.zywvvd.com/notes/coding/python/opencv-error/opencv-error/

赞(0)
未经允许不得转载:工具盒子 » Python Opencv 错误记录