Skip to content

Instantly share code, notes, and snippets.

View fahimanabila's full-sized avatar

Fahima Nabila fahimanabila

View GitHub Profile
@rahit
rahit / edges.py
Last active October 8, 2025 18:03
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__ = "[email protected]"
import cv2
import numpy as np
img = cv2.imread('messi5.jpg')