Skip to content

Detecting important corners in images and real-time video using Harris Corner Detector. and Shi-tomasi corner Detector

Notifications You must be signed in to change notification settings

nishagandhi/detect_those_corners

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

detect_those_corners

This repo is the implementation of this blog post : https://medium.com/pixel-wise/detect-those-corners-aba0f034078b

The code implements Harris Corner Detector and Shi-Tomasi Corner Detector. Detecting important corners in an image or a video is the most important and basic task in Computer Vision. It is important for applications such as panaroma creation (stitching of images together), object recognition, motion tracking etc. Read the above blog to know more about how corner detection works in practise.




Requirements :

OpenCV 3.4.1
Python 3.6.5

Sample command-line usage:

For image/webcam/video (respectively)

python detect_corners.py --input_type=0 --img_path=path/to/image.jpg
python detect_corners.py --input_type=1 --camera=0
python detect_corners.py --input_type=2 --folder_path=path/to/folder

You can save the output by setting --save=True.

About

Detecting important corners in images and real-time video using Harris Corner Detector. and Shi-tomasi corner Detector

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages