• 大小: 1KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Python
  • 标签: open  mv  code  color  

资源简介

Open MV色彩识别,工程训练大赛用的代码,可以识别不同颜色的物体,需要的可以下载看一下,识别RGB颜色,也可以识别出靶环的颜色

资源截图

代码片段和文件信息

# Untitled - By: hp - 周四 2月 14 2019
# 识别物体颜色

import sensor image time pyb

red_threshold = (47 68 55 103 25 63) # red_thresholds
green_threshold  = (45 65 -50 -30 0 40)# green_thresholds
blue_threshold  = (28 81 -52 81 -29 -87)# blue_thresholds

sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time = 2000)
sensor.set_auto_whitebal(False)#关闭自动白平衡
sensor.set_auto_gain(False)#关闭自动增益

clock = time.clock()

while(True):
    clock.tick()
    img = sensor.snapshot().lens_corr(1.8)
    for blob in img.find_blobs([red

评论

共有 条评论