建议购买官方标配的云台
D
dskg 发布的帖子
-
RE: 请问openmv的初始化可以在while(ture)里面进行变更吗
# Hello World Example # # Welcome to the OpenMV IDE! Click on the green run arrow button below to run the script! import sensor, image, time sensor.reset() # Reset and initialize the sensor. sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE) sensor.set_framesize(sensor.QQVGA # Set frame size to QVGA (320x240) sensor.skip_frames(time = 2000) # Wait for settings take effect. clock = time.clock() # Create a clock object to track the FPS. while(True): clock.tick() # Update the FPS clock. img = sensor.snapshot() # Take a picture and return the image. print(clock.fps()) # Note: OpenMV Cam runs about half as fast when connected # to the IDE. The FPS should increase once disconnected.
我就是想在一个代码程序里面用两种VGA,代码应该怎么写
-
RE: 请问openmv的初始化可以在while(ture)里面进行变更吗
如果我要改vga呢,或者原本开了效果增强,但是想关掉,可以在while里更改么
哥们你答非所问啊 -
请问openmv的初始化可以在while(ture)里面进行变更吗
具体又应该怎么改呢比如更改vga格式?????
具体是说。比如我想在同时使用线性回归和数字识别,但是两者的初始化不同啊(比如像素格式什么的)
我应该怎么改初始化呢(同时的意思是在同一个main文件里)
或者说我要去另外调用文件(里的函数吗)
求大佬解答!!!