gpt4 book ai didi

python - Pygame 显示镜像的图像字母

转载 作者:行者123 更新时间:2023-11-28 17:08:52 26 4
gpt4 key购买 nike

你能帮我理解为什么 pygame 显示我的图像是镜像的吗?有关更多信息,请参阅所附图片:

enter image description here

我正在从 PiCamera 捕捉图像到 PiRGBArray 流中,然后创建一个 pygame 表面模块并显示图像。

这是代码:

camera = PiCamera()
camera.resolution = (640, 480)
rawCapture = PiRGBArray(camera, size=(640, 480))

pygame.init()
lcdDisplay = pygame.display.set_mode((480,640))

for frame in camera.capture_continuous(rawCapture, format="rgb",
image = frame.array

surf=pygame.surfarray.make_surface(image)
lcdDisplay.blit(surf, (0,0))

pygame.display.update()
pygame.display.flip()

# clear the stream
rawCapture.truncate(0)

最佳答案

您正在从相机捕捉图像,而相机不是镜子 :-)

这样想:如果相机正面朝前,并且您拍照,它看起来会“正确”。如果您翻转它使其面向您,图像就会翻转。

这与 pygame 无关,这只是相机(网络摄像头)的工作方式。

关于python - Pygame 显示镜像的图像字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49091536/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com