Vidhi Patel
Published

Resizing the Image Using OpenCV and Python

Resize the images using OpenCV and Python.

IntermediateProtip5,699
Resizing the Image Using OpenCV and Python

Things used in this project

Hardware components

Odinub
Odinub
×1

Software apps and online services

OpenCV
OpenCV – Open Source Computer Vision Library OpenCV

Story

Read more

Code

resize.py

Python
import cv2
img= cv2.imread(/root/vidhi/kerala1.jpg,cv2.IMREAD_UNCHANGED)
print(Original Dimensions:,img.shape)

#Downscaling
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 in down scale 
resized = cv2.resize(img, dim, interpolation = cv2.INTER_AREA) 
print('Resized Dimensions : ',resized.shape) 
cv2.imwrite('/root/vidhi/resize.png', resized)

#upscaling
scale_percent = 220 # 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 in up scale 
resized_up = cv2.resize(img, dim, interpolation = cv2.INTER_AREA) 
print('Resized Dimensions : ',resized_up.shape) 
cv2.imwrite('root/vidhi/resize.png', resized_up)

#resize only width
width = 440 
height = img.shape[0] # keep original height 
dim = (width, height) 
# resize image 
resized_w = cv2.resize(img, dim, interpolation = cv2.INTER_AREA) 
print('Resized Dimensions : ',resized_w.shape) 
cv2.imwrite('root/vidhi/resize.png', resized_w) 

#resize only height
width = img.shape[1] # keep original width 
height = 440 
dim = (width, height)
 # resize image 
resized_h = cv2.resize(img, dim, interpolation = cv2.INTER_AREA) 
print('Resized Dimensions : ',resized_h.shape) 
cv2.imwrite('/root/vidhi/resize.png', resized_h)

#resize width and height
width = 350 
height = 450 
dim = (width, height) 
# resize image 
resized_hw = cv2.resize(img, dim, interpolation = cv2.INTER_AREA) 
print('Resized Dimensions : ',resized_hw.shape) 
cv2.imwrite('/root/vidhi/resize.png', resized_hw) 

cv2.waitKey(0)
cv2.destroyAllWindows()

Credits

Vidhi Patel
4 projects • 2 followers
Contact

Comments

Please log in or sign up to comment.