导航

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

    dxmn 创建的帖子

    • D

      有没有如何检测字母的方法呢?除了模板匹配
      OpenMV Cam • • dxmn

      2
      0
      赞同
      2
      楼层
      2108
      浏览

      还是模板匹配效果好一些。
    • D

      检测二维码不灵敏怎么办
      OpenMV Cam • • dxmn

      4
      0
      赞同
      4
      楼层
      4040
      浏览

      D

      @kidswong999 比赛要求就是这种的二维码,但是现在想着不用匹配度很高就匹配到有什么办法呢
    • D

      识别条形码,但是很模糊,有什么好的调整办法
      OpenMV Cam • • dxmn

      3
      0
      赞同
      3
      楼层
      4692
      浏览

      https://book.openmv.cc/example/16-Codes/find-barcodes.html
    • D

      在巡线的过程中同时录视频
      OpenMV Cam • • dxmn

      2
      0
      赞同
      2
      楼层
      2285
      浏览

      你要画完框之后,再m.add_frame(img)
    • D

      不用线性回归的方法检测线倾斜的角度
      OpenMV Cam • • dxmn

      2
      0
      赞同
      2
      楼层
      2345
      浏览

      https://book.openmv.cc/example/09-Feature-Detection/find-lines.html
    • D

      除了霍夫找圆,还有什么方法找圆
      OpenMV Cam • • dxmn

      2
      0
      赞同
      2
      楼层
      2386
      浏览

      没有其他方法。
    • D

      openmv检测圆形很卡
      OpenMV Cam • • dxmn

      3
      0
      赞同
      3
      楼层
      2982
      浏览

      D

      那还有什么方法能够检测圆的吗
    • D

      memory不够怎么办
      OpenMV Cam • • dxmn

      7
      0
      赞同
      7
      楼层
      5652
      浏览

      @dxmn 你的代码有问题啊。 406行里,find_all_Line这个函数哪来的?所以提示有错误。 https://cn.bing.com/search?q=python3+调用其他文件的函数&qs=n&form=QBLH&sp=-1&pq=python3+调用其他文件的han+sh&sc=0-21&sk=&cvid=BB3007B7B7A740B49E2D3493DDD6F180
    • D

      openmv3定点程序
      OpenMV Cam • • dxmn

      4
      0
      赞同
      4
      楼层
      3923
      浏览

      http://book.openmv.cc/example/22-Optical-Flow/absolute-rotation-scale.html 仔细找一下
    • D

      openmv3检测字母
      OpenMV Cam • • dxmn

      8
      0
      赞同
      8
      楼层
      6975
      浏览

      特征点检测不行吗?
    • D

      TypeError:'displacement' object is not iterable
      OpenMV Cam • • dxmn

      3
      0
      赞同
      3
      楼层
      3277
      浏览

      D

      # Optical Flow Example # # Your OpenMV Cam can use optical flow to determine the displacement between # two images. This allows your OpenMV Cam to track movement like how your laser # mouse tracks movement. By tacking the difference between successive images # you can determine instaneous displacement with your OpenMV Cam too! import sensor, image, time sensor.reset() # Initialize the camera sensor. sensor.set_pixformat(sensor.GRAYSCALE) # or sensor.GRAYSCALE sensor.set_framesize(sensor.B64x32) # or B40x30 or B64x64 clock = time.clock() # Tracks FPS. # NOTE: The find_displacement function works by taking the 2D FFTs of the old # and new images and compares them using phase correlation. Your OpenMV Cam # only has enough memory to work on two 64x64 FFTs (or 128x32, 32x128, or etc). old = sensor.snapshot() while(True): clock.tick() # Track elapsed milliseconds between snapshots(). img = sensor.snapshot() # Take a picture and return the image. [delta_x, delta_y, response] = old.find_displacement(img) old = img.copy() print("%0.1f X\t%0.1f Y\t%0.2f QoR\t%0.2f FPS" % \ (delta_x, delta_y, response, clock.fps()))