Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当尝试使用 cv.Circle 在图像上绘制圆时,我意识到 Python OpenCV 中没有 cv.Point 函数来创建 cvPoint。我正在使用 Debian 的最新稳定版本,并使用 Synaptic 安装了所有 Python OpenCV 包。如何创建一个与 cv.Circle 函数一起使用的 cvPoint?
使用元组。这是实心绿色圆圈的示例:
cv2.circle(img, (x1, y1), 3, (0, 255, 0), -1)