导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. xn4i
    3. 楼层
    X
    • 举报资料
    • 资料
    • 关注
    • 粉丝
    • 屏蔽
    • 帖子
    • 楼层
    • 最佳
    • 群组

    xn4i 发布的帖子

    • 为什么IDE上有图像,LCD上只显示白色。
      请在这里粘贴代码
      

      (IDE版本openMV3.03 exe,LCD版本:openMV4 plus 3 CamM7 H7)

      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
      import 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() # Initialize the lcd screen.
      #lcd初始化

      while(True):
      lcd.display(sensor.snapshot()) # Take a picture and display the image.
      #将图像显示在lcd中
      0_1695650464229_微信图片_20230925220051.jpg

      发布在 OpenMV Cam
      X
      xn4i