Test detection of corners using Harris method from OpenCV. I written this simple program to test this method on different images with various parameters.
python CornersHarris.py
OpenCV have a method called 'cornerHarris', which helps to find corners on the picture.
cv2.cornerHarris(igray, Block_size, K_size, K)
Where:
- Block_size - size of neighborhood considered for corner detection
- K_size - Aperture parameter of Sobel derivative used.
- K - Harris detector free parameter in the equation:
- Python
- OpenCV
- PySimpleGUI
An0ther0ne
GNU General Public License v3.0