mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-07-13 04:49:56 +02:00
4 lines
157 B
Python
4 lines
157 B
Python
import cv2
|
|
|
|
def resize_image(img_in, input_height, input_width):
|
|
return cv2.resize(img_in, (input_width, input_height), interpolation=cv2.INTER_NEAREST)
|