有关rasberry pi的当前文档说,要将PIL图像绘制到相机捕获中,请执行以下操作:
import picamera
from PIL import Image
from time import sleep
with picamera.PiCamera() as camera:
camera.resolution = (1280, 720)
camera.framerate = 24
camera.start_preview()
# Load the arbitrarily sized image
img = Image.open('overlay.png')
# Create an image padded to the required size with
# mode 'RGB'
pad = Image.new('RGB', (
((img.size[0] + 31) // 32) * 32,
((img.size[1] + 15) // 16) * 16,
))
# Paste the original image into the padded one
pad.paste(img, (0, 0))
# Add the overlay with the padded image as the source,
# but the original image's dimensions
o = camera.add_overlay(pad.tostring(), size=img.size)
# By default, the overlay is in layer 0, beneath the
# preview (which defaults to layer 2). Here we make
# the new overlay semi-transparent, then move it above
# the preview
o.alpha = 128
o.layer = 3
# Wait indefinitely until the user terminates the script
while True:
sleep(1)
但是,Image.tostring()引发错误,提示“ tostring()已被删除。请改为调用tobytes()”
鉴于tostring已弃用,正确的方法是什么?
答案 0 :(得分:1)
答案在您的问题中
但是,Image.tostring()引发错误,提示“ tostring()已被删除。请改为调用tobytes()”
只需更改:
o = camera.add_overlay(pad.tostring(), size=img.size)
收件人:
o = camera.add_overlay(pad.tobytes(), size=img.size)
picamera文档已更新为解决此问题:https://picamera.readthedocs.io/en/release-1.13/recipes1.html#overlaying-images-on-the-preview