Skip to content

Instantly share code, notes, and snippets.

View QApolo's full-sized avatar
🎯
Focusing

Juan Carlos García Medina QApolo

🎯
Focusing
View GitHub Profile
@rahit
rahit / edges.py
Last active May 21, 2024 01:33
Canny, Prewitt and Sobel Edge detection using opencv
"""
edges.py: Canny, Prewitt and Sobel Edge detection using opencv
"""
__author__ = "K.M. Tahsin Hassan Rahit"
__email__ = "tahsin.rahit@gmail.com"
import cv2
import numpy as np
img = cv2.imread('messi5.jpg')