Answers for "shrink image in opencv"

3

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)
Posted by: Guest on May-24-2021
2

opencv resize image

cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]])
Posted by: Guest on August-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language