botaniscan / app /internal /resizeImage.py
anurag629's picture
first commit
16f49c5
raw
history blame contribute delete
200 Bytes
import cv2
def resizeImage(image, width, height):
"""
Resizes an image to the specified width and height.
"""
return cv2.resize(image, (width, height), interpolation=cv2.INTER_AREA)