def download_image()

in data_preparation/image_utils.py [0:0]


def download_image(url: str) -> np.ndarray:
    image = Image.open(requests.get(url, stream=True).raw)
    image = image.convert("RGB")
    image = np.array(image)
    return image