导航

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

    ca2g 创建的帖子

    • C

      设置灰度图用的什么方法啊?
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2543
      浏览

      https://docs.singtown.com/micropython/zh/latest/openmvcam/library/omv.sensor.html#sensor.sensor.set_pixformat 原理:设置感光元件寄存器,从感光元件直接获得灰度图。 不是从彩色转成灰度。
    • C

      畸变校正用的是什么原理?
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2572
      浏览

      源码: https://github.com/openmv/openmv/blob/414c6e1a51070e743c074c4a0bbd6f859c9a375e/src/omv/img/imlib.c#L1185 算法介绍: https://tannerhelland.com/2013/02/11/simple-algorithm-correcting-lens-distortion.html
    • C

      比如·我知道一区域的roi=(0, 21, 241, 219),如何把图像缩放到28*28的区域内
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2345
      浏览

      我没看懂你要做什么?
    • C

      在进行量化神经网络模型时,
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2489
      浏览

      目前不提供训练和量化的教程。
    • C

      如何输出在特定roi区域内的某种颜色所占比例的大小?
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2449
      浏览

      https://book.openmv.cc/image/statistics.html#statistics 统计信息,或者用直方图。 https://docs.singtown.com/micropython/zh/latest/openmvcam/library/omv.image.html#histogram.get_percentile
    • C

      怎么定义kpts可以用for循环读取出来?
      OpenMV Cam • • ca2g

      2
      0
      赞同
      2
      楼层
      2504
      浏览

      tpts = [tpts1, tpts2, tpts3] for t in tpts: print(t)