新手入门
- 积分
- 4
- 金钱
- 4
- 注册时间
- 2021-11-15
- 在线时间
- 0 小时
|

楼主 |
发表于 2021-11-15 00:26:24
|
显示全部楼层
补充:OpenMv的程序,程序目的是想让OpenMv识别到黄色后向串口发送‘1’,当识别到黄色时,串口助手则接收1(已验证)
- # Blob Detection and uart transport
- import sensor, image, time
- from pyb import UART
- import json
- # For color tracking to work really well you should ideally be in a very, very,
- # very, controlled enviroment where the lighting is constant...
- yellow_threshold = (19,34,20,40,16,35)
- # You may need to tweak the above settings for tracking green things...
- # Select an area in the Framebuffer to copy the color settings.
- sensor.reset() # Initialize the camera sensor.
- sensor.set_pixformat(sensor.RGB565) # use RGB565.
- sensor.set_framesize(sensor.QQVGA) # use QQVGA for speed.
- sensor.skip_frames(10) # Let new settings take affect.
- sensor.set_auto_whitebal(False) # turn this off.
- clock = time.clock() # Tracks FPS.
- 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_blob
- while(True):
- img = sensor.snapshot() # Take a picture and return the image.
- blobs = img.find_blobs([yellow_threshold])
- if blobs:
- max_blob=find_max(blobs)
- print('sum :', len(blobs))
- img.draw_rectangle(max_blob.rect())
- img.draw_cross(max_blob.cx(), max_blob.cy())
- #output_str="[%d,%d]" % (max_blob.cx(),max_blob.cy()) #方式1
- #output_str=json.dumps([max_blob.cx(),max_blob.cy()]) #方式2
- #print('you send:',output_str)a
- uart.write('1')
- print('write1')
- else:
- print('not found!')
复制代码 |
|