Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

opencv imshow 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()
Comment

opencv python shrink image

import cv2
 
src = cv2.imread('D:/cv2-resize-image-original.png', cv2.IMREAD_UNCHANGED)

#percent by which the image is resized
scale_percent = 50

#calculate the 50 percent of original dimensions
width = int(src.shape[1] * scale_percent / 100)
height = int(src.shape[0] * scale_percent / 100)

# dsize
dsize = (width, height)

# resize image
output = cv2.resize(src, dsize)

cv2.imwrite('D:/cv2-resize-image-50.png',output) 
Comment

python opencv imresize

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

opencv resize image

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

PREVIOUS NEXT
Code Example
Python :: what does abs do in python 
Python :: how to convert time from one timezone to another in python 
Python :: cast as float python 
Python :: python webview 
Python :: Routes In Django 
Python :: pyautogui 
Python :: sorted lambda 
Python :: write hexadecimal in python 
Python :: windows task scheduler python script 
Python :: python describe 
Python :: catching exceptions in python 
Python :: python using set 
Python :: python list clear vs del 
Python :: args in python 
Python :: python tuple operations 
Python :: how to check if variable in python is of what kind 
Python :: join tables in django orm 
Python :: split dataframe row on delimiter python 
Python :: interfaces in python 
Python :: unittest 
Python :: create anaconda env 
Python :: site:*.instagram.com 
Python :: what are while loops 
Python :: Adding column to CSV Dictreader 
Python :: django model make the field caseinsensitive 
Python :: doormat pattern python 
Python :: Using the token to make requests 
Python :: function palindrome python 
Python :: python check if division has remainder 
Python :: PyQt5 change keyboard/tab behaviour in a table 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =