导航

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

    高级搜索

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

    请问OpenMV IDE怎么设置代码自动补齐功能。

    1.请问OpenMV IDE怎么设置代码自动补齐功能。
    2.使用其他sensor模块的路径在哪?

    L
    发布在 OpenMV Cam

    可以查找某个函数库属于哪个dll文件吗

    可以查找某个函数库属于哪个dll文件吗?比如,sensor模块在哪个dll文件里面?

    B
    发布在 OpenMV Cam

    MV3,上电灯疯狂闪烁,出现error文档

    重刷固件,还是出现同样情况。上电,灯疯狂闪烁。
    error内容:FATAL ERROR: Failed to init sensor, error:-2

    1
    发布在 OpenMV Cam

    为什么find_datamatrices返回的数组是空数组

    import sensor, image, time
    
    sensor.reset()
    sensor.set_pixformat(sensor.RGB565)
    sensor.set_framesize(sensor.QVGA)
    sensor.skip_frames(time = 2000)
    sensor.set_windowing(( 320, 240))
    
    clock = time.clock()
    
    
    
    while(True):
        clock.tick()
        img = sensor.snapshot()
        img.lens_corr(1.2)
        matrix = img.find_datamatrices()
        print(matrix)
        print(clock.fps())
    

    R
    发布在 OpenMV Cam

    0v5640的模组调用修改亮度、对比度、饱和度的方法会白屏

    你这几个函数就是控制sensor的显示效果的。所以有什么问题?不应该变白吗?

    发布在 OpenMV Cam

    关于识别有无apriltag

    import sensor, image, time,math

    sensor.reset()
    sensor.set_pixformat(sensor.RGB565)
    sensor.set_framesize(sensor.QVGA)
    sensor.skip_frames(time = 2000)

    clock = time.clock()

    while(True):
    clock.tick()
    img = sensor.snapshot()
    print(clock.fps())
    a=img.find_apriltags()
    if a:
    print("you")
    else:
    print("wu")

    N
    发布在 OpenMV Cam

    为什么这个grayscale_to_binary没法使用

    import sensor, image, time
    
    sensor.reset()
    sensor.set_pixformat(sensor.GRAYSCALE)
    sensor.set_framesize(sensor.QVGA)
    sensor.skip_frames(time = 2000)
    
    clock = time.clock()
    
    while(True):
        clock.tick()
        img = sensor.snapshot()
        img.grayscale_to_binary(128)
        print(clock.fps())
    

    0_155451764G.png

    1
    发布在 OpenMV Cam

    openmvsensor调节

    如果要调节下面的设置怎么设置sensor,ISO=500
    整体亮度50,对比度100,红色增益0.9

    1
    发布在 OpenMV Cam

    有线图传显示无法显示xga画质?

    img.crop()有scale参数:

    import sensor, image, time
    
    sensor.reset()
    sensor.set_pixformat(sensor.RGB565)
    sensor.set_framesize(sensor.XGA)
    sensor.skip_frames(time = 2000)
    
    clock = time.clock()
    
    while(True):
        clock.tick()
        img = sensor.snapshot()
        img.crop(x_scale=0.3125, y_scale=0.3125)
        print(clock.fps())
    
    

    发布在 OpenMV Cam

    如何旋转视场90度,在相机位置不变的情况下

    import sensor, image
    
    sensor.reset()
    sensor.set_pixformat(sensor.RGB565)
    sensor.set_framesize(sensor.QVGA)
    sensor.skip_frames(time = 2000)
    
    while(True):
        img = sensor.snapshot().replace(vflip=False,
                                        hmirror=False,
                                        transpose=True)
    
    

    https://book.openmv.cc/example/04-Image-Filters/vflip-hmirror-transpose.html

    发布在 OpenMV Cam
    • 1
    • 2
    • 14
    • 15
    • 16
    • 17
    • 18
    • 49
    • 50
    • 16 / 50