Skip to content

rajat4665/Corner_Detection_using_python_programing

Repository files navigation

Corner-Detection-using-python-programing

In this Repository I am gonna show you practical implementation of Harris corner detection with Open-CV using python programming.

A pipeline of Corner Detection using Harris corner with OpenCV.

Harris_detector_pipeline

How to run this code:

  • Fore more details visit my  blog
  • clone this repository
  • open it into Jupyter notebook
  • Now run its cells one by one

How to install jupyter notebook in Ubuntu:

open your terminal and paste these commands one by one.
sudo apt install python3-pip python3-dev
pip install jupyter

How to install jupyter notebook in windows:

Follow this Link for windows

Install these Requirements:

pip install OpenCV-python

pip install matplotlib

pip install numpy

Introduction:

Hello friends, welcome back to my another repository on Computer Vision. Have you guys ever thought how a machine see image or video?

Basically, image is a set of numerical data in which each pixel has a value from 0 to 255 according to color space. If I am talking about a color image which is consist of three channels (Red, Green, Blue), Here three sheets of RGB placed in a single stack whereas if we talk about grayscale images which consist of a single channel where the value of pixels varies from 0 to 255 in which 0 means black and 255 mean white.

Corner Detector:

There are many methods for corner detection but here I would like to talk about the Harris corner detector, later on, I will implement it in OpenCV. Harris Corner Detector is a corner detection operator that is commonly used in computer vision algorithms to extract corners and infer features of an image. It was first introduced by Chris Harris and Mike Stephens in 1988 upon the improvement of Moravec's corner detector. It is being used from many decades in the world of computer vision to detect corners from an image due to good accuracy and it is easy to implement.

Input:

photo-1502370414204-7e128f26d730

Output:

_cornerDetected_image

About

In this Repository I am gonna show you practical implementation of Harris corner detection with Open-CV using python programming.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors