openmv输出的图像格式是什么,是不是由程序控制的输出图像格式,如果想要RGB格式只有编输出RGB的程序即可是吧,其中单个颜色追踪里的blob函数能不能用RGB设置阈值
州
州山
@州山
0
声望
9
楼层
1659
资料浏览
2
粉丝
1
关注
州山 发布的帖子
-
openmv输出的图像格式
-
RE: openmv与STM32F407通信
# UART Control # # This example shows how to use the serial port on your OpenMV Cam. Attach pin # P4 to the serial input of a serial LCD screen to see "Hello World!" printed # on the serial LCD display. import time from pyb import UART # Always pass UART 3 for the UART number for your OpenMV Cam. # The second argument is the UART baud rate. For a more advanced UART control # example see the BLE-Shield driver. uart = UART(3, 19200) while(True): uart.write("Hello World!\r") time.sleep(1000)
直接将三改成一就行了吗
-
openmv与STM32F407通信
我想让openmv识别色块后把中心坐标实时发送给407板子,用串口一或者串口三通信,不知道这个openmv上的通信协议是跟407板子用的一样吗?有没大佬能贴个例程