导航

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

    euq3 创建的帖子

    • E

      用pyqt做的图传连接到ip会卡住,用游览器连接到ip就是正常的
      OpenMV Cam • • euq3

      2
      0
      赞同
      2
      楼层
      921
      浏览

      你看看OpenMV上的代码是什么,估计是mjpeg。mjpeg的协议是一个长连接,multipart发送,所以没有一个完整的http连接。 你可以用下面的代码。每个请求只传输一张图片。然后你在qt里每秒访问5次就行了。 https://book.openmv.cc/MCU/wifi.html#只传输一张图片
    • E

      在识别圆形里出现多个大小相近的圆,我应该如何筛选出半径最大的那一个
      OpenMV Cam • • euq3

      2
      0
      赞同
      2
      楼层
      815
      浏览

      写for循环遍历一下: import sensor, image, time sensor.reset() sensor.set_pixformat(sensor.RGB565) # grayscale is faster sensor.set_framesize(sensor.QQVGA) sensor.skip_frames(time = 2000) clock = time.clock() while(True): clock.tick() img = sensor.snapshot().lens_corr(1.8) max_circle = None for c in img.find_circles(threshold = 2000, x_margin = 10, y_margin = 10, r_margin = 10, r_min = 2, r_max = 100, r_step = 2): if max_circle is None: max_circle = c elif c.r() > max_circle.r(): max_circle = c print(max_circle) if max_circle: img.draw_circle(max_circle.x(), max_circle.y(), max_circle.r(), color = (255, 0, 0)) print("FPS %f" % clock.fps())
    • E

      如何让OPENMV读取SD卡中的图片来进行图像处理
      OpenMV Cam • • euq3

      2
      0
      赞同
      2
      楼层
      794
      浏览

      https://book.openmv.cc/example/03-Drawing/copy2fb.html
    • E

      请问WIFI扩展模块用到了OPENMV上的哪些引脚?
      OpenMV Cam • • euq3

      2
      0
      赞同
      2
      楼层
      845
      浏览

      https://singtown.com/product/619/openmv-wifi-shield/ 详情里有引脚图,你可以使用P4P5来和Arduino通信。
    • E

      如果使用openmv+WIFI扩展,然后电脑上用qt写一个程序,可以直接从192.168.1.1:8080读取图片吗?
      OpenMV Cam • • euq3

      1
      0
      赞同
      1
      楼层
      615
      浏览

      尚无回复

    • E

      请问能否使用WIFI模块将TF卡里的图片上传到PC上保存?
      OpenMV Cam • • euq3

      4
      0
      赞同
      4
      楼层
      1537
      浏览

      @euq3 可以,但是你说的方案和问题不一样。你说的是OpenMV作为server,电脑作为client。 你想明白谁主动,谁被动就行。主动的是client,被动的是server。