# Find Rects Example
#
# 这个例子展示了如何使用april标签代码中的四元检测代码在图像中找到矩形。 四元检测算法以非常稳健的方式检测矩形,并且比基于Hough变换的方法好得多。 例如,即使镜头失真导致这些矩形看起来弯曲,它仍然可以检测到矩形。 圆角矩形是没有问题的!
# (但是,这个代码也会检测小半径的圆)...
import sensor, image, time
sensor.reset()
sensor.set_pixformat(sensor.RGB565) # 灰度更快(160x120 max on OpenMV-M7)
sensor.set_framesize(sensor.QQVGA)
sensor.skip_frames(time = 2000)
clock = time.clock()
while(True):
clock.tick()
img = sensor.snapshot()
rectangles = img.find_rects()
rectangles = []
for rectangle in rectangles :
if rectangles.size > roi(80,60,80,70):
renctangles.append(rectangles)
print(rectangles )
print("FPS %f" % clock.fps())
P
p4id
@p4id
0
声望
1
楼层
257
资料浏览
0
粉丝
0
关注
p4id 发布的帖子
-
我想从一推矩形中识别到特定的矩形,但是好像识别不出来,主要是我想要的矩形们和我指定的大小该怎么写,有人帮我看一下怎么改吗