Spaces:
Running
Running
File size: 354 Bytes
e5ce3a7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import cv2
import numpy as np
def get_image(image_input) -> np.array:
"""Outputs numpy array of image given a string filepath or PIL image"""
if type(image_input) == str:
image = cv2.imread(image_input) # OpenCV uses BGR
else:
image = cv2.cvtColor(np.array(image_input), cv2.COLOR_RGB2BGR) # PIL uses RGB
return image
|