导航

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

    15004226107 发布的帖子

    • 如何在openmv导入cv2库

      我在网上看到一些程序引入了cv2的库,自己尝试了一下并不可以,他会报错,请问如何能够引入cv2的库

      发布在 OpenMV Cam
      1
      15004226107
    • 光流例程对不上

      请问在论坛上讲解的光流例程和在openmv IDE中给出的例程是不一样,将论坛上给的例程复制到openmv IDE 上还有错误,不知道为什么,是哪里有新的讲解我找到吗?,求解下图是openmv IDE 中的例程0_1531314699475_openmv.png

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 圆形检测帧率

      好的,谢谢您的解答

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 圆形检测帧率

      @yuan 在 圆形检测帧率 中说:

      framebuffer

      只有把分辨率改到QQQVGA才会变为20帧左右,但是图像模糊,识别出现问题,改变其他的效果不是很明显

      发布在 OpenMV Cam
      1
      15004226107
    • 圆形检测帧率

      openmv中检测圆形的例程帧率是4左右,请问如何提高帧率(我想检测全图的圆),例程还能改进吗?

      发布在 OpenMV Cam
      1
      15004226107
    • 读片读取

      读取图片一定要在sd卡中吗,可以直接读取显示电脑上的图片吗?

      发布在 OpenMV Cam
      1
      15004226107
    • 目标跟随PID反应很慢

      我用openmv采到需要目标的坐标,怎么和云台电机联系起来,我直接使用PID发现反应很慢,请问有什么好的方法吗?

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      不好意思,我这边的单片机串口引脚坏了,换了个单片机都好用了

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      现在测也是高电平,但是发数正常,换到32单片机上,单片机可以接受但是接收到的数不对

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      我这边和电脑发正常,但是和stm32单片机发就有问题,得到的数不对

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      UART Control

      This example shows how to use the serial port on your OpenMV Cam. Attach pin

      P4 to the serial input of a serial LCD screen to see "Hello World!" printed

      on the serial LCD display.

      import time
      from pyb import UART

      Always pass UART 3 for the UART number for your OpenMV Cam.

      The second argument is the UART baud rate. For a more advanced UART control

      example see the BLE-Shield driver.

      uart = UART(3, 115200, timeout_char = 1000)

      while(True):
      uart.write("Hello World!\r")
      time.sleep(1000)

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      不好意思我贴错。。。。。。

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      绝对没有测错,我检查过了

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      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.QVGA) # 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.

      发布在 OpenMV Cam
      1
      15004226107
    • RE: 串口发送有问题

      我用的例程,波形是用示波器测的

      发布在 OpenMV Cam
      1
      15004226107
    • 串口发送有问题

      请问我在做串口发送的时候tx一直是高电平,用的例程,是硬件问题吗?rx没有问题

      发布在 OpenMV Cam
      1
      15004226107