如何保存分辨率大于1080p的图片?

How to save image with resolution greater than 1080p?

我正在尝试以 3840x2160 分辨率使用罗技 BRIO,当我执行 python 代码时,window 打开相机图像(在 3840x2160 ),但是当我保存帧时,程序会在 1920x1080 中创建图像。如何以 4k 格式保存图像 高分辨率?

我正在使用 opencv-python==4.1.0.25

import cv2
import time

def main(args):

    CAMERA_PORT = 0

    IMAGEWIDTH = 3840
    IMAGEHEIGHT = 2160

    #Propriedades de configuracao da camera
    # 3 = width da camera, 4 = height da camera
    CAMERA_PROP_WIDTH = 3
    CAMERA_PROP_HEIGHT = 4

    camera = cv2.VideoCapture(CAMERA_PORT)
    camera.set(CAMERA_PROP_WIDTH, IMAGEWIDTH)
    camera.set(CAMERA_PROP_HEIGHT, IMAGEHEIGHT)

    imagePath = "/home/barbosa/Documents/camera-controller/images/image.png"


    while(True):

        retval, image = camera.read()
        cv2.imshow('Foto',image)

        k = cv2.waitKey(100)

        if k == 27:
            break

        elif k == ord('s'):
            cv2.imwrite(imagePath,image)
            break

    cv2.destroyAllWindows()
    camera.release()
    return 0

if __name__ == '__main__':
    import sys
    sys.exit(main(sys.argv))

您可以制作自己的自定义调整大小功能来放大并保持纵横比,然后保存图像。我在我的 IP 摄像头而不是网络摄像头上对其进行了测试。

这是调整大小的函数

# Resizes a image and maintains aspect ratio
def maintain_aspect_ratio_resize(image, width=None, height=None, inter=cv2.INTER_AREA):
    # Grab the image size and initialize dimensions
    dim = None
    (h, w) = image.shape[:2]

    # Return original image if no need to resize
    if width is None and height is None:
        return image

    # We are resizing height if width is none
    if width is None:
        # Calculate the ratio of the height and construct the dimensions
        r = height / float(h)
        dim = (int(w * r), height)
    # We are resizing width if height is none
    else:
        # Calculate the ratio of the 0idth and construct the dimensions
        r = width / float(w)
        dim = (width, int(h * r))

    # Return the resized image
    return cv2.resize(image, dim, interpolation=inter)

完整代码

import cv2
import time

# Resizes a image and maintains aspect ratio
def maintain_aspect_ratio_resize(image, width=None, height=None, inter=cv2.INTER_AREA):
    # Grab the image size and initialize dimensions
    dim = None
    (h, w) = image.shape[:2]

    # Return original image if no need to resize
    if width is None and height is None:
        return image

    # We are resizing height if width is none
    if width is None:
        # Calculate the ratio of the height and construct the dimensions
        r = height / float(h)
        dim = (int(w * r), height)
    # We are resizing width if height is none
    else:
        # Calculate the ratio of the 0idth and construct the dimensions
        r = width / float(w)
        dim = (width, int(h * r))

    # Return the resized image
    return cv2.resize(image, dim, interpolation=inter)

def main(args):

    CAMERA_PORT = 0

    IMAGEWIDTH = 3840
    IMAGEHEIGHT = 2160

    #Propriedades de configuracao da camera
    # 3 = width da camera, 4 = height da camera
    CAMERA_PROP_WIDTH = 3
    CAMERA_PROP_HEIGHT = 4

    camera = cv2.VideoCapture(CAMERA_PORT)
    camera.set(CAMERA_PROP_WIDTH, IMAGEWIDTH)
    camera.set(CAMERA_PROP_HEIGHT, IMAGEHEIGHT)

    imagePath = "/home/barbosa/Documents/camera-controller/images/image.png"

    while(True):

        retval, image = camera.read()
        cv2.imshow('Foto',image)

        k = cv2.waitKey(100)

        if k == 27:
            break

        elif k == ord('s'):
            image = maintain_aspect_ratio_resize(image, width=IMAGEWIDTH)
            cv2.imwrite(imagePath,image)
            break

    cv2.destroyAllWindows()
    camera.release()
    return 0

if __name__ == '__main__':
    import sys
    sys.exit(main(sys.argv))