如何使用 left、top、right 和 bottom 坐标在矩形内绘制圆圈?

ID:19743 / 打印

如何使用 left、top、right 和 bottom 坐标在矩形内绘制圆圈?

使用 left、top、right 和 bottom 坐标表示的矩形内绘制圆圈

如何使用 left、top、right 和 bottom 坐标来表示矩形,并使用 opencv 的 cv2.circle() 函数在这个矩形内绘制圆圈呢?

解决方案:

首先,导入必要的库:

import cv2 import numpy as np

接下来,创建一个填充白色(255)的黑色图像:

img = np.ones((1000, 1000), np.uint8) * 255

接着,使用 rectangle() 函数在图像上绘制一个矩形:

left, top, right, bottom = 530, 836, 685, 885 cv2.rectangle(img, (left, top), (right, bottom), 0)

最后,使用两个嵌套的 for 循环遍历矩形内的每个像素点,并使用 circle() 函数在这些像素点上绘制圆圈:

for y in range(top * 2, bottom * 2 + 1, bottom - top):     for x in range(left * 2, right * 2 + 1, right - left):         cv2.circle(img, (x, y), 8, 0, cv2.filled, cv2.line_aa, 1)

将结果显示在图像窗口中:

cv2.imshow('img', img) cv2.waitKey()

最终,你将看到一个带有 nine个黑色圆圈的白色矩形。每个圆圈都位于矩形内的九个特定点:左上、上中、右上、左中、中心、右中、左下、下中和右下。

上一篇: DRF匿名用户限流:如何解决Nginx代理导致的IP识别问题?
下一篇: 如何向 Python 中的现有对象实例添加方法?

作者:admin @ 24资源网   2025-01-14

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。