Answers for "edge detection detection opencv"

2

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
Posted by: Guest on April-22-2021

Code answers related to "edge detection detection opencv"

Python Answers by Framework

Browse Popular Code Answers by Language