@kidswong999 录制视频也是0k,不能打开播放
lf4z 发布的帖子
-
RE: OPENMV的SD卡可以保持运行程序,但是录制视频,GIF都是0K,一般是什么问题呢?
@kidswong999
复制错了:
import sensor, image, time, gif, pybRED_LED_PIN = 1
BLUE_LED_PIN = 3sensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
sensor.set_framesize(sensor.QQVGA) # or sensor.QVGA (or others)
sensor.skip_frames(time = 2000) # Let new settings take affect.
clock = time.clock() # Tracks FPS.pyb.LED(RED_LED_PIN).on()
sensor.skip_frames(time = 2000) # Give the user time to get ready.pyb.LED(RED_LED_PIN).off()
pyb.LED(BLUE_LED_PIN).on()g = gif.Gif("example.gif", loop=True)
print("You're on camera!")
for i in range(100):
clock.tick()
# clock.avg() returns the milliseconds between frames - gif delay is in
g.add_frame(sensor.snapshot(), delay=int(clock.avg()/10)) # centiseconds.
print(clock.fps())g.close()
pyb.LED(BLUE_LED_PIN).off()
print("Done! Reset the camera to see the saved recording.") -
RE: OPENMV的SD卡可以保持运行程序,但是录制视频,GIF都是0K,一般是什么问题呢?
@kidswong999
IDE中的:example/video_recording/gif.py
源码:
import sensor, image, timesensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time = 2000)
clock = time.clock()while(True):
clock.tick()
img = sensor.snapshot()
print(clock.fps()) -
OpenMV使用DFU更新固件后,usb插在电脑上,蓝灯闪烁,电脑没有弹出,新设备?有大佬知道怎么回事吗?
OpenMV使用DFU更新固件后,usb插在电脑上,蓝灯闪烁,电脑没有弹出,新设备?有大佬知道怎么回事吗?
-
RE: 怎么将GIT上的源码编译成openmv2的配置(openmv3已经在Ubuntu下编译成功了[不使用qt工具])
@kidswong999 openmv内核代码中使用的printf()打印的信息可以在哪个串口上查看呢?
-
怎么将GIT上的源码编译成openmv2的配置(openmv3已经在Ubuntu下编译成功了[不使用qt工具])
不使用qt可以修改配置吗?有大佬指导一下。可以看懂部门Makefile
-
RE: 为什么我我再GitHub上下载的源码,无法编译通过呢?(开发环境已经安装好了)
@kidswong999 我用词有问题,我用的就是git clone。你用的是什么版本的Ubuntu,多少位的?