openmv有没有一个函数可以将RGB图像转换成灰度图?如果没有那么PIL的模块有没有?能不能直接导入
-
import sensor, image, tv
from PIL import Imagesensor.reset() # Initialize the camera sensor.
sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
sensor.set_framesize(sensor.QQVGA)
tv.init() # Initialize the tv.while(True):
img = sensor.snapshot()
img.convert('L')
tv.display(img)
-