📜  窗口大小 cv2 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:56.228000             🧑  作者: Mango

代码示例1
import cv2
cv2.namedWindow("output", cv2.WINDOW_AUTOSIZE)        # Create window with freedom of dimensions
im = cv2.imread("earth.jpg")                        # Read image
imS = cv2.resize(im, (960, 540))                    # Resize image
cv2.imshow("output", imS)                            # Show image
cv2.waitKey(0)                                      # Display the image infinitely until any keypress