Skip to content

assets mostly used for computer vision demos

License

Notifications You must be signed in to change notification settings

sueszli/datasets

Repository files navigation

usage:

from PIL import Image
import requests

url = "https://sueszli.github.io/datasets/cat_1966.jpeg"
img = Image.open(requests.get(url, stream=True).raw).convert("RGBA")
img = img.crop((0, img.height - img.width, img.width, img.height))
img.show()

About

assets mostly used for computer vision demos

Topics

Resources

License

Stars

Watchers

Forks