• OpenMV VSCode 扩展发布了,在插件市场直接搜索OpenMV就可以安装
  • 如果有产品硬件故障问题,比如无法开机,论坛很难解决。可以直接找售后维修
  • 发帖子之前,请确认看过所有的视频教程,https://singtown.com/learn/ 和所有的上手教程http://book.openmv.cc/
  • 每一个新的提问,单独发一个新帖子
  • 帖子需要目的,你要做什么?
  • 如果涉及代码,需要报错提示全部代码文本,请注意不要贴代码图片
  • 必看:玩转星瞳论坛了解一下图片上传,代码格式等问题。
  • 我的神经网络nn报错,是没有这个模块?



    • 0_1682304168451_不能导入nn库.jpg

      sensor.reset() # 复位并初始化传感器。

      sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE)
      #设置图像色彩格式,有RGB565色彩图和GRAYSCALE灰度图两种

      sensor.set_framesize(sensor.QVGA) # 将图像大小设置为QVGA (320x240)

      sensor.set_windowing((128, 128)) # 设置128 x128窗口。
      sensor.skip_frames(time=750) # 不要让自动增益运行太长时间。
      sensor.set_auto_gain(False) # 关掉自动增益。
      sensor.set_auto_exposure(False) # 关掉自动曝光。

      加载cifar10网络。OpenMV3 M7上使用此网络可能会超出内存。

      #net = nn.load('/cifar10.network')
      net = nn.load('/cifar10_fast.network')
      labels = ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck']

      clock = time.clock()
      while(True):
      clock.tick()

      img = sensor.snapshot()
      

      for obj in net.search(img, threshold=0.6, min_scale=0.4, scale_mul=0.8,
      x_overlap=-1, y_overlap=-1, contrast_threshold=0.5):
      print("Detected %s - Confidence %f%%" % (labels[obj.index()], obj.value()))
      img.draw_rectangle(obj.rect(), color=(255, 0, 0))
      print(clock.fps())