“Ubah Ukuran Imshow OpenCV” Kode Jawaban

Ubah Ubah Ubah Imshow Opencv Python

import cv2
cv2.namedWindow("output", cv2.WINDOW_NORMAL)        # 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
Old-fashioned Opossum

Ubah Ukuran Imshow OpenCV

import cv2
 
img = cv2.imread('/home/img/python.png', cv2.IMREAD_UNCHANGED)
 
print('Original Dimensions : ',img.shape)
 
scale_percent = 60 # percent of original size
width = int(img.shape[1] * scale_percent / 100)
height = int(img.shape[0] * scale_percent / 100)
dim = (width, height)
  
# resize image
resized = cv2.resize(img, dim, interpolation = cv2.INTER_AREA)
 
print('Resized Dimensions : ',resized.shape)
 
cv2.imshow("Resized image", resized)
cv2.waitKey(0)
cv2.destroyAllWindows()
Happy Hare

Python opencv iMresize

im = cv2.resize(im, None, fx=1/3, fy=1/3, interpolation=cv2.INTER_AREA)
Magnificent Magpie

Gambar Ubah Ubah Ubah OpenCV

cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]])
George Kirby

Jawaban yang mirip dengan “Ubah Ukuran Imshow OpenCV”

Pertanyaan yang mirip dengan “Ubah Ukuran Imshow OpenCV”

Lebih banyak jawaban terkait untuk “Ubah Ukuran Imshow OpenCV” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya