需要对整幅图像做运算操作,一个一个点获取太慢了,如何一下把整幅图变成矩阵呢?
gtao 发布的帖子
-
为什么手册里有的函数,实际用的时候说没有
为什么手册里有的函数,实际用的时候说没有,例如这个imagewriter
import sensor, image, time
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QQVGA)
sensor.skip_frames(time = 2000)clock = time.clock()
imgnew=image.Image(160,480,sensor.RGB565,copy_to_fb=True)img = sensor.snapshot()#copy_to_fb=imgnew)
ddimg=img.copy(roi=(0,0,50,50))imgnew.draw_image(ddimg,5*i,20)
img.ImageWriter('uuu')
-
想要把多个帧的同一个区域截取出来,拼到一张图上怎么做?
1、查到了image构造函数可以生成一个空白的,自定义像素尺寸的图像(这张图当作底版)
img1=image.Image(500,500,sensor.RGB565, copy_to_fb=True)2、查到了draw_image函数,可以把一幅图画到另一图(底版图)的相应位置,用mask来遮罩只剩下想要的区域
实践了下,出问题了,以下是代码
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.
clock = time.clock() # Create a clock object to track the FPS.img_bottom=image.Image(500,500,sensor.RGB565, copy_to_fb=True)
imgsensor = sensor.snapshot() # Take a picture and return the image.
img_bottom.draw_image(imgsensor,(2,2))Image is not mutable!
怎么回事?求帮助