导航

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

    dktg

    @dktg

    0
    声望
    9
    楼层
    1220
    资料浏览
    0
    粉丝
    1
    关注
    注册时间 最后登录

    dktg 关注

    dktg 发布的帖子

    • lcd屏幕怎样设置横屏显示

      lcd屏幕怎样设置横屏显示

      发布在 OpenMV Cam
      D
      dktg
    • 怎样修改,语法错在哪里呢?

      0_1554471760385_220ad3d4-7030-40ec-9d3a-95353f464f11-image.png

      发布在 OpenMV Cam
      D
      dktg
    • 这一行代码中的第二个百分号,表示什么意思?

      output_str="[%d]" % (max_blob.cx()) ,这一行代码中的第二个百分号,表示什么意思?

      发布在 OpenMV Cam
      D
      dktg
    • RE: 运行lcd_1.py后,lcd还是白屏,是什么原因?

      @dktg 我运行的是opmv中的例程

      发布在 OpenMV Cam
      D
      dktg
    • 运行lcd_1.py后,lcd还是白屏,是什么原因?

      LCD Example

      Note: To run this example you will need a LCD Shield for your OpenMV Cam.

      The LCD Shield allows you to view your OpenMV Cam's frame buffer on the go.

      import sensor, image, lcd

      sensor.reset() # Initialize the camera sensor.
      sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
      sensor.set_framesize(sensor.QQVGA2) # Special 128x160 framesize for LCD Shield.
      lcd.init() # Initialize the lcd screen.

      while(True):
      lcd.display(sensor.snapshot()) # Take a picture and display the image.

      发布在 OpenMV Cam
      D
      dktg
    • RE: 为什么这条语句错了yaw_angle =math.degrees(yaw_angle))

      243行变量名center_x_,是不是多了一个下划线

      发布在 OpenMV Cam
      D
      dktg
    • RE: 写两个串口通信例子。谢谢!

      arduinoUNO串口接受色块数据的例子有吗?

      发布在 OpenMV Cam
      D
      dktg
    • 写两个串口通信例子。谢谢!

      写两个串口通信例子:
      1是用openMV写一个发现绿色方块,把方块中心坐标,用串口发给arduino UNO;
      2是写一个arduino用串口接受这个坐标的数据的例子。

      发布在 OpenMV Cam
      D
      dktg
    • for执行过程是什么?第一次执行什么,第二次执行什么

      for blob in img.find_blobs([thresholds[threshold_index]], pixels_threshold=200, area_threshold=200, merge=True):
      img.draw_rectangle(blob.rect())
      img.draw_cross(blob.cx(), blob.cy())

      发布在 OpenMV Cam
      D
      dktg