Programmed from scracth using python
- Harris Corner Detector
- Normalized Cross Correlation
python3 harris.py --image image_name --sigma sigma_value --threshold threshold_value
python3 harris.py --image images/01.png --sigma 3 --threshold 0.1
python3 demo.py \
--image1 image1_name \
--image2 image2_name \
--sigma sigma value \
--threshold_h threshold value for harris corner detector \
--threshold_d threshold vaşue for point descriptor \
--min_dist minimum distance value between points \
--wid wid value \
--graph graph type [line or point]
python3 demo.py \
--image1 images/01.png \
--image2 images/02.png \
--sigma 3 \
--threshold_h 0.05 \
--threshold_d 0.5 \
--graph line
python3 demo.py \
--image1 images/01.png \
--image2 images/02.png \
--sigma 3 \
--threshold_h 0.05 \
--threshold_d 0.5 \
--graph point