Skip to content

Ravjot03/Real-Time-Edge-Detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 14, 2020
2076957 · Apr 14, 2020

History

9 Commits
Apr 14, 2020
Apr 14, 2020
Apr 14, 2020

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