python cv2 scale image code example

Example 1: cv2 resize

resized_image = cv2.resize(image, (100, 50))

Example 2: cv2 .resie

import cv2 

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


src	[required] 				source/input image

dsize	[required] 			desired size for the output image

fx	[optional] 			scale factor along the horizontal axis

fy	[optional]          scale factor along the vertical axis

interpolation	[optional] 			      flag that takes one of the following methods. INTER_NEAREST – a nearest-neighbor 
interpolation INTER_LINEAR – a bilinear interpolation (used by default) INTER_AREA – resampling using pixel area
relation. It may be a preferred method for image decimation, as it gives moire’-free results.
But when the image is zoomed,it is similar to the INTER_NEAREST method. INTER_CUBIC – a bicubic interpolation 
over 4×4 pixel neighborhood INTER_LANCZOS4 – a Lanczos interpolation over 8×8 pixel neighborhood