我的编程空间,编程开发者的网络收藏夹
学习永远不晚

OpenMV4 基于色块识别的图形+颜色+坐标识别代码(micropython)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

OpenMV4 基于色块识别的图形+颜色+坐标识别代码(micropython)

Hello大家好,最近竞赛需要开始研究OpenMV4,今天和大家分享一段基于色块识别的图形+颜色+坐标识别代码,实测准确率高于90%哦,当然,需要在光线和距离都合适的情况下使用(假如你的识别结果不尽如人意,可以自行调节颜色阈值和目标与摄像头的距离),下面,话不多说,上代码!(需要搭配OpenMV IDE使用)

# Untitled - By: zzy - 周五 11月 25 2022import sensor, image, timefrom pyb import UARTimport jsonoutput_str_green="[0,0]"output_str_red="[0,0]"output_str_blue="[0,0]"output_str_brown="[0,0]"output_str_yellow="[0,0]"#green_threshold  = (   0,   80,  -70,   -10,   -0,   30)green_threshold  = (   3,   39,  -29,   2,   1,   25)red_threshold    = (   28,   40,  51,   65,   22,   50)orange_threshold = (   23,   39,  19,   42,   13,   31)blue_threshold  = (   50,   56,  -14,   1,   -31,   -13)brown_threshold  = (   22,   30,  1,   17,   8,   25)yellow_threshold  = (   53,   58,  -7,   3,   58,   63)sensor.reset()sensor.set_pixformat(sensor.RGB565)sensor.set_framesize(sensor.QVGA)sensor.set_windowing((0,20,320,200))#QVGA find Region Of Interest#sensor.set_windowing((5,10,160,95))#QQVGA find Region Of Interestsensor.skip_frames(10)sensor.set_auto_whitebal(False)clock = time.clock()uart = UART(3, 115200)def find_max(blobs):    max_size=0    for blob in blobs:        if blob.pixels() > max_size:            max_blob=blob            max_size = blob.pixels()    return max_blobdef detect(max_blob):#输入的是寻找到色块中的最大色块    #print(max_blob.solidity())    shape=0    if max_blob.solidity()>0.90 or max_blob.density()>0.84:        img.draw_rectangle(max_blob.rect(),color=(255,255,255))        shape=1    elif max_blob.density()>0.6:        img.draw_circle((max_blob.cx(), max_blob.cy(),int((max_blob.w()+max_blob.h())/4)))        shape=2    elif max_blob.density()>0.4:        img.draw_rectangle(max_blob.rect(),color=(0,0,0))        shape=3    return shapewhile(True):    #clock.tick()    img = sensor.snapshot() # Take a picture and return the image.    blobs_green = img.find_blobs([green_threshold])    blobs_red = img.find_blobs([red_threshold])    #blobs_orange = img.find_blobs([orange_threshold])    blobs_blue = img.find_blobs([blue_threshold])    blobs_brown = img.find_blobs([brown_threshold])    blobs_yellow = img.find_blobs([yellow_threshold])    if blobs_green:        max_blob_green=find_max(blobs_green)        shape_green=detect(max_blob_green)        #img.draw_rectangle(max_blob_green.rect(),color=(0,255,0))#画框        img.draw_cross(max_blob_green.cx(), max_blob_green.cy(),color=(0,255,0))#画十字准星        output_str_green="[%d,%d,%d]" % (max_blob_green.cx(),max_blob_green.cy(),shape_green) #方式1        print('green:',output_str_green)    else:        print('not found green!')    if blobs_red:        max_blob_red=find_max(blobs_red)        shape_red=detect(max_blob_red)        #img.draw_rectangle(max_blob_red.rect(),color=(255,0,0))        img.draw_cross(max_blob_red.cx(), max_blob_red.cy(),color=(255,0,0))        output_str_red="[%d,%d,%d]" % (max_blob_red.cx(),max_blob_red.cy(),shape_red) #方式1        print('red:',output_str_red)    else:        print('not found red !')    #if blobs_orange:        #max_blob_orange=find_max(blobs_orange)        #detect(max_blob_orange)        ##img.draw_rectangle(max_blob_orange.rect(),color=(255,128,0))        #img.draw_cross(max_blob_orange.cx(), max_blob_orange.cy(),color=(255,128,0))        #output_str_orange="[%d,%d]" % (max_blob_orange.cx(),max_blob_orange.cy()) #方式1        #print('orange:',output_str_orange)        #uart.write(output_str_orange+'\r\n')    #else:        #print('not found orange !')    if blobs_blue:        max_blob_blue=find_max(blobs_blue)        shape_blue=detect(max_blob_blue)        #img.draw_rectangle(max_blob_blue.rect(),color=(0,0,255))        img.draw_cross(max_blob_blue.cx(), max_blob_blue.cy(),color=(0,0,255))        output_str_blue="[%d,%d,%d]" % (max_blob_blue.cx(),max_blob_blue.cy(),shape_blue) #方式1        print('blue:',output_str_blue)    else:        print('not found blue !')    if blobs_brown:        max_blob_brown=find_max(blobs_brown)        shape_brown=detect(max_blob_brown)        #img.draw_rectangle(max_blob_brown.rect(),color=(205,133,63))        img.draw_cross(max_blob_brown.cx(), max_blob_brown.cy(),color=(205,133,63))        output_str_brown="[%d,%d,%d]" % (max_blob_brown.cx(),max_blob_brown.cy(),shape_brown) #方式1        print('brown:',output_str_brown)    else:        print('not found brown !')    if blobs_yellow:        max_blob_yellow=find_max(blobs_yellow)        shape_yellow=detect(max_blob_yellow)        #img.draw_rectangle(max_blob_yellow.rect(),color=(255,255,0))        img.draw_cross(max_blob_yellow.cx(), max_blob_yellow.cy(),color=(255,255,0))        output_str_yellow="[%d,%d,%d]" % (max_blob_yellow.cx(),max_blob_yellow.cy(),shape_yellow) #方式1        print('yellow:',output_str_yellow)    else:        print('not found yellow !')    uart.write(output_str_green + output_str_red + output_str_blue + output_str_brown + output_str_yellow + '\r\n')    #print(clock.fps())

再来看看程序的运行结果吧 ,在识别出多个图形,颜色及坐标之后,性能仍然不赖

实测运行结果,在颜色阈值选择正确情况下识别率还是比较高的哦(三角形识别出之后画黑色矩形框,不是没识别出来哦)
解除部分注释之后可以查看帧数以调整性能,开发者还可以根据自己的需求增加被检测颜色与图形,再将其通过串口发送到目标单片机上哦,假如之后有时间,我再出一份解释代码含义的文章,嘻嘻,就看大家的需求和小编的时间啦。

来源地址:https://blog.csdn.net/qq_63910028/article/details/128072010

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

OpenMV4 基于色块识别的图形+颜色+坐标识别代码(micropython)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Python+OpenCV如何实现基于颜色的目标识别

这篇文章给大家介绍Python+OpenCV如何实现基于颜色的目标识别,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。任务让摄像头识别到视野范围内的气球并返回每个气球的中心点坐标。因为场地固定,背景单一,所以省下来很多操
2023-06-22

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录