导航

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

    u3va_1615271136

    @u3va_1615271136

    0
    声望
    9
    楼层
    377
    资料浏览
    0
    粉丝
    0
    关注
    注册时间 最后登录

    u3va_1615271136 关注

    u3va_1615271136 发布的帖子

    • openmv不用图传扩展版可以像普通的ov7725那样当摄像头一样用吗?

      如果可以要怎么用?

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • 怎么能看到调用的函数更底层的写法?

      例如
      tv.init(triple_buffer=False) # Initialize the tv.
      tv.channel(8) # For wireless video transmitter shield

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • 如何提高人脸分辨的精确度

      想问人脸分辨的精确度怎么样能提高呢?可以用神经网络做人脸分辨吗?

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • 得到像素RGB565的颜色数据

      ![0_1619486634319_21T5![W}ED`R1TRFM5K12KX.png](正在上传 100%)
      image.grayscale_to_rgb(grayscale_value) 这个函数返回是RGB888的颜色数据,想要得到RGB565的颜色数据,自己用函数将RGB88转RGB565得到的颜色数据会失真

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • AttributeError:'module'object has no attribute 'width'?怎么解决
      # Snapshot Example
      #
      # Note: You will need an SD card to run this example.
      #
      # You can use your OpenMV Cam to save image files.
      
      import sensor, image, pyb,time
      from pyb import UART
      
      RED_LED_PIN = 1
      BLUE_LED_PIN = 3
      
      sensor.reset() # Initialize the camera sensor.
      sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
      sensor.set_framesize(sensor.QVGA) # or sensor.QQVGA (or others)
      sensor.skip_frames(time = 2000) # Let new settings take affect.
      
      uart = UART(3, 19200,timeout_char=1000)
      
      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()
      
      img = sensor.snapshot() # or "example.bmp" (or others)
      
      pyb.LED(BLUE_LED_PIN).off()
      
      uart = UART(3, 19200)
      fr = True
      while(fr):
          p_width=image.width()
          p_height=image.height()
          uart.write("12345")
          for x in range(p_width):
              for y in range(p_height):
                  rgb=img.get_pixel(n,k)
                  uart.write(rgb[0])
                  uart.write(rgb[1])
                  uart.write(rgb[2])
          uart.write("12345")
          fr = False
      
      发布在 OpenMV Cam
      U
      u3va_1615271136
    • RE: OpenMV3串口通讯

      查过连线的问题,RX和TX交错连线,GND相连

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • RE: OpenMV3串口通讯

      是的,是按照教程做的

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • OpenMV3串口通讯

      如何用串口通讯发送图片信息,图片信息是如何发送的,求教

      发布在 OpenMV Cam
      U
      u3va_1615271136
    • OpenMV3串口通讯

      OpenMV3串口通讯 按教程用TTL转USB做的,串口助手收不到信息,请问会是哪里出了问题,程序用的是例程,波特率也调过了。

      发布在 OpenMV Cam
      U
      u3va_1615271136