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 March 22, 2025 15:47
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')