9
def cvimage_to_pygame(image):
    """Convert cvimage into a pygame image"""
    return pygame.image.frombuffer(image.tostring(), image.shape[:2],
                                   "RGB")

该函数采用从 cv2 相机获取的 numpy 数组。当我在 pyGame 窗口上显示返回的 pyGame 图像时,它出现在三个损坏的图像中。我不知道这是为什么!

任何帮助将不胜感激。

继承人会发生什么::

(左侧的 Pygame)

在此处输入图像描述

4

1 回答 1

8

shape字段宽度和高度参数被交换。替换参数:

image.shape[:2] # gives you (height, width) tuple

image.shape[1::-1] # gives you (width, height) tuple
于 2013-10-11T20:14:50.897 回答