2023电赛E题视觉部分

该部分主要要完成正方形区域的识别,并返回对应的坐标,但是由于距离1m,过远。因此需要引入图像增强,下面代码完成基本流程测试,仅供参考:

import sensor

import image

import time

初始化摄像头

sensor.reset()

sensor.set_pixformat(sensor.RGB565)

sensor.set_framesize(sensor.QVGA)

sensor.skip_frames(time = 2000)

设置阈值,用于图像增强

thresholds = [(30, 100, -64, -8, -32, 32)] # 根据实际情况调整阈值

while True:

img = sensor.snapshot() # 获取图像

图像增强

img.binary([thresholds])

寻找轮廓

blobs = img.find_blobs([thresholds], pixels_threshold=200, area_threshold=200)

遍历找到的轮廓

for blob in blobs:

判断是否为正方形

if blob.is_square():

计算正方形的中心坐标

x = blob.cx()

y = blob.cy()

计算距离

distance = 1 / blob.w() # 假设正方形的宽度为1米

在图像上绘制正方形和坐标

img.draw_rectangle(blob.rect())

img.draw_cross(x, y)

打印坐标和距离

print("Square found at (x={}, y={}), distance={}m".format(x, y, distance))

显示图像

img.show()

相关推荐
zy_destiny2 天前
【工业场景】用YOLOv12实现饮料类别识别
人工智能·python·深度学习·yolo·机器学习·计算机视觉·目标跟踪
卧式纯绿2 天前
每日文献(八)——Part one
人工智能·yolo·目标检测·计算机视觉·目标跟踪·cnn
选与握3 天前
目标跟踪综合知识
目标跟踪
Ayakanoinu4 天前
【论文阅读】Dynamic Adversarial Patch for Evading Object Detection Models
论文阅读·目标检测·目标跟踪
量子-Alex6 天前
顶刊【遥感目标检测】【TGRS】FFCA-YOLO遥感图像小目标检测
yolo·目标检测·目标跟踪
量子-Alex9 天前
【遥感小目标数据集】【AI-TOD】Tiny Object Detection in Aerial Images
人工智能·目标检测·目标跟踪
Chukai12312 天前
目标检测中归一化的目的?
人工智能·目标检测·目标跟踪
卧式纯绿14 天前
目标检测20年(二)
人工智能·深度学习·算法·yolo·目标检测·机器学习·目标跟踪
reset202114 天前
基于深度学习的目标追踪技术全解析
人工智能·深度学习·目标跟踪
卧式纯绿16 天前
目标检测20年(一)
人工智能·yolo·目标检测·机器学习·计算机视觉·目标跟踪