Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

edge detection opencv python

import cv2
img = cv2.imread(IMG_PATH) #reading the image
edges = cv2.Canny(img,100,200) #canney edhe detecton
cv2.imshow('Edges in the image', edges) #displaying the image
 
PREVIOUS NEXT
Tagged: #edge #detection #opencv #python
ADD COMMENT
Topic
Name
8+5 =