edge detection opencv python

Solutions on MaxInterview for edge detection opencv python by the best coders in the world

showing results for - "edge detection opencv python"
Nola
14 Jul 2016
1import cv2
2img = cv2.imread(IMG_PATH) #reading the image
3edges = cv2.Canny(img,100,200) #canney edhe detecton
4cv2.imshow('Edges in the image', edges) #displaying the image