导航

    • 登录
    • 搜索
    • 版块
    • 产品
    • 教程
    • 论坛
    • 淘宝
    1. 主页
    2. 搜索

    高级搜索

    搜索子版块
    保存设置 清除设置
    共 499 条结果匹配 "sensor",(耗时 0.06 秒)

    关于OpenMV分辨率初始化命令的问题?

    可以改变,直接设置即可sensor.set_framesize(sensor.**VGA)

    发布在 OpenMV Cam

    OpenMV IDE中检测不到传感器,显示传感器没有?

    https://forum.singtown.com/topic/5949/the-image-sensor-is-detached-or-failed-to-initialize

    发布在 OpenMV Cam

    同时识别颜色和圆的sensor设置问题

    使用同一个sensor设置就行,统一为QQVGA。

    发布在 OpenMV Cam

    关于底层代码问题,如何看实现方法的动作代码

    https://forum.singtown.com/search?term=sensor 源码&in=titlesposts

    发布在 OpenMV Cam

    sensor.snapshot() 若是拍照不成功,或者摄像头出故障,返回什么值?

    没有
    不过。。。为什么要有?sensor又不会坏。

    发布在 OpenMV Cam

    machine vs pyb

    改为

    import sensor, image, time
    from machine import Pin
    
    p0=Pin("P0", Pin.OUT)
    

    发布在 OpenMV Cam

    这个程序中的lcd.py文件在哪儿找?

    import sensor, image
    import 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.
    #lcd初始化

    while(True):
    lcd.display(sensor.snapshot()) # Take a picture and display the image.
    #将图像显示在lcd中

    I
    发布在 OpenMV Cam

    这个软件怎么可以隔一段时间自动保存图像❓

    import sensor, image, time
    
    sensor.reset()                      # Reset and initialize the sensor.
    sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE)
    sensor.set_framesize(sensor.QVGA)   # Set frame size to QVGA (320x240)
    sensor.skip_frames(time = 2000)     # Wait for settings take effect.
    times = 0
    while(True):
        img = sensor.snapshot()
        times += 1
        if times > 100:
            img.save("1.jpeg")
            times = 0
    

    发布在 OpenMV Cam

    有关减少光线干扰问题

    http://book.openmv.cc/example/21-Sensor-Control/sensor_exposure_control.html

    可以手动调节曝光。

    发布在 OpenMV Cam

    关于光线不稳定如何提高颜色识别的准确性

    http://book.openmv.cc/example/21-Sensor-Control/sensor_exposure_control.html

    可以手动控制曝光。

    发布在 OpenMV Cam
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 49
    • 50
    • 7 / 50