Skip to content

Ravjot03/Real-Time-Edge-Detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Real-Time-Edge-Detection

Real-Time Edge Detection using OpenCV in Python

Canny Edge Detection Method

The objective of the program given is to perform edge detection of images in real-time. The popular canny edge detection algorithm is used to detect a wide range of edges in images. OpenCV has in-built function cv2.Canny() which takes our input image as first argument and its aperture size(min value and max value) as last two arguments.

Libraries Required:

  1. OpenCV
  2. Numpy