資源簡介
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
評論
共有 條評論