openmv串口发送数据_关于arduino和openmv串口通信的问题
#openmv的代碼
import sensor, image, time
import json
from pyb import UART
# For color tracking to work really well you should ideally be in a very, very,
# very, controlled enviroment where the lighting is constant...
blue_threshold? ?= ( 0, 60, -20, 64, -128, 0)
# You may need to tweak the above settings for tracking green things...
# Select an area in the Framebuffer to copy the color settings.
#p4_10,p5_11,gnd_gnd
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)
'''
擴寬roi
'''
def expand_roi(roi):
# set for QQVGA 160*120
extra = 5
win_size = (160, 120)
(x, y, width, height) = roi
new_roi = [x-extra, y-extra, width+2*extra, height+2*extra]
if new_roi[0] < 0:
new_roi[0] = 0
if new_roi[1] < 0:
new_roi[1] = 0
if new_roi[2] > win_size[0]:
new_roi[2] = win_size[0]
if new_roi[3] > win_size[1]:
new_roi[3] = win_size[1]
return tuple(new_roi)
K=680 #the value should be measured
while(True):
clock.tick() # Track elapsed milliseconds between snapshots().
img = sensor.snapshot() # Take a picture and return the image.
blobs = img.find_blobs([blue_threshold], area_threshold=150)
if blobs:
#如果找到了目標(biāo)顏色
data=[]
#print(blobs)
for blob in blobs:
#迭代找到的目標(biāo)顏色區(qū)域
b = blob[0]
is_circle = False
max_circle = None
max_radius = -1
new_roi = expand_roi(blob.rect())
Lm = (blob[2]+blob[3])/2
length = K/Lm
length = str(length)
length = float(length)
for c in img.find_circles(threshold = 2000, x_margin = 10, y_margin = 10, r_margin = 10, roi=new_roi):
is_circle = True
# img.draw_circle(c.x(), c.y(), c.r(), color = (255, 255, 255))
if c.r() > max_radius:
max_radius = c.r()
max_circle = c
if is_circle:
# 如果有對應(yīng)顏色的圓形 標(biāo)記外框
# Draw a rect around the blob.
img.draw_rectangle(new_roi) # rect
img.draw_rectangle(blob.rect()) # rect
#用矩形標(biāo)記出目標(biāo)顏色區(qū)域
img.draw_cross(blob[5], blob[6]) # cx, cy
img.draw_circle(max_circle.x(), max_circle.y(), max_circle.r(), color = (0, 255, 0))
img.draw_circle(max_circle.x(), max_circle.y(), max_circle.r() + 1, color = (0, 255, 0))
data.append((max_circle.x(),max_circle.y(),length))
#data.append(length)
data_out = json.dumps(set(data))
uart.write(data_out +'\n')
print('you send:',data_out)
else:
print("not found!")
else:
print("not found!")
#print(clock.fps()) # Note: Your OpenMV Cam runs about half as fast while
# connected to your computer. The FPS should increase once disconnected.
總結(jié)
以上是生活随笔為你收集整理的openmv串口发送数据_关于arduino和openmv串口通信的问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 可转债网下打新规则?
- 下一篇: 期货交易策略及技巧有哪些?
