Create beautiful retro art or dotted art 🎨 using python imaging library(pillow).
Convert the input image into gray mode. And Extract dimensions of the original image.
from PIL import Image, ImageDraw
import numpy as np# read as gray image
im = Image.open("monica.jpg").convert("L")
width, height = im.size
I recently came across wildlife projects using AI and how they are helping in protecting endangered species and thought of making a model to help detecting tigers🐅 in the wild. Scroll down, too see how i trained my object detection model.
If you are active in computer vision, you may have heard about yolov5. There’s some controversy around its naming, you can read details from here. Ultralytics team put a great effort in open-sourcing this model 👏👏👏
A Deep Learning practitioner working on ordinary tasks which may look as extraordinary.