概述
# LCD Example
#
# Note: To run this example you will need a LCD Shield for your OpenMV Cam.
#
# The LCD Shield allows you to view your OpenMV Cam's frame buffer on the go.
import sensor, image, lcd
sensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
sensor.set_framesize(sensor.QQVGA2) # Special 128x160 framesize for LCD Shield.
#lcd.init(1,128,160,framesize=lcd.FWVGA,60) # Initialize the lcd screen.
lcd.init(1, 128, height=160, framesize=0, refresh=30, triple_buffer=False, bgr=False)
while(True):
lcd.display(sensor.snapshot()) # Take a picture and display the image.
最后
以上就是阳光唇彩为你收集整理的mv-lcd初始化的全部内容,希望文章能够帮你解决mv-lcd初始化所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复