Answers for "cv2.resize()"

5

cv2 resize

resized_image = cv2.resize(image, (100, 50))
Posted by: Guest on May-13-2020
8

cv2.resize()

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()
Posted by: Guest on September-01-2020

Code answers related to "cv2.resize()"

Python Answers by Framework

Browse Popular Code Answers by Language