Skip to content

Instantly share code, notes, and snippets.

View ignaciohrdz's full-sized avatar
🧠
Always learning

Ignacio Hernández Montilla ignaciohrdz

🧠
Always learning
  • Legit.Health
  • Madrid, Spain
View GitHub Profile
@rahit
rahit / edges.py
Last active February 12, 2026 22:50
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')