导航

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

    iluw 创建的帖子

    • I

      如何将图像从RGB颜色空间转换到HSV或HSI颜色空间?
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1160
      浏览

      OpenMV目前没有HSV和HSI。只有RGB,LAB
    • I

      如何对一幅图像进行RGB通道拆分?
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1024
      浏览

      可以调用 r = img.to_grayscale(rgb_channel = 1,copy=True) g = img.to_grayscale(rgb_channel = 2,copy=True) b = img.to_grayscale(rgb_channel = 3,copy=True)
    • I

      关闭白平衡和自动增益后,改变光源的亮度却还是会被自动校正平衡。如何彻底关闭白平衡和自动增益?
      OpenMV Cam • • iluw

      4
      0
      赞同
      4
      楼层
      1986
      浏览

      I

      已经解决了,非常感谢
    • I

      image.binary()如何设定mask参数?
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1185
      浏览

      mask可以是一个二值化图片的路径,也可以是一个二值化图片。
    • I

      有什么方法去设定二维倾斜的矩形区域为感兴趣区域
      OpenMV Cam • • iluw

      7
      0
      赞同
      7
      楼层
      3050
      浏览

      第一步,先识别二维码,得到二维码的旋转角度。可以用四个角的坐标计算:qrcode.corners() https://docs.singtown.com/micropython/zh/latest/openmvcam/library/omv.image.html#image.qrcode.qrcode.corners 第二步,得到角度之后,旋转整个图像,把图像矫正水平。https://book.openmv.cc/example/04-Image-Filters/rotation-correction.html
    • I

      模板匹配的find_template()函数多次调用会报错问题?
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1173
      浏览

      你把逗号写成小数点了。
    • I

      报错:TypeError: NoneType' object isn't callable
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1379
      浏览

      for blob in img.find_blobs(C_thresholds, roi=right_roi, x_stride=2, y_stride=1, invert=False, area_threshold=4, pixels_threshold=4, merge=True, margin=1, threshold_cb=None, merge_cb=None): 改为 for blob in img.find_blobs(C_thresholds, roi=right_roi, x_stride=2, y_stride=1, invert=False, area_threshold=4, pixels_threshold=4, merge=True, margin=1):
    • I

      Color-Tracking->multi_color_blob_tracking多颜色跟踪中能否去掉打印帧率和时钟?
      OpenMV Cam • • iluw

      2
      0
      赞同
      2
      楼层
      1109
      浏览

      只是三行而已,用于显示性能。你想删掉可以删掉。