OPENMV如何在程序中读取截图的问题
-
在帧缓冲区保存一张截图后。
如何在程序中读取该图片赋给变量img?
谢谢!!
-
我没懂你的问题,你看看hello world?
-
import sensor, image, time
thresholds = [(30, 100, 15, 127, 15, 127)]
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time = 2000)
sensor.set_auto_gain(False) # must be turned off for color tracking
sensor.set_auto_whitebal(False) # must be turned off for color trackingimg = #########################读取电脑中储存的截图
b = img.find_blobs(thresholds, pixels_threshold=200, area_threshold=200):print(b.pixels()) #输出该图片中特点颜色的像素点个数
上面代码中 img = #########################读取电脑中储存的截图
如何实现读取截图?
-
img = image.Image("/example.jpg")