Skip to content

Latest commit

 

History

History
executable file
·
43 lines (28 loc) · 875 Bytes

README.md

File metadata and controls

executable file
·
43 lines (28 loc) · 875 Bytes

Visual Place Recognition, 2023

Demo Image

Installation:

Note - there is no dataset included due to space constraints

  1. Clone repo
git clone git@github.com:baj31415/visual-place-recognition.git \
&& cd visual-place-recognition
  1. Build
mkdir build && cd build
cmake ..
make 
  1. Run executable, which should generate a html file for the the most similar images in the dataset to the query image
./main
  1. Open the webpage in a web browser

Features Implemented

  • Sift Descriptors for each image in the dataset
  • Kmeans clustering of the Sift descriptors
  • Bag of Visual Words Dictionary
  • Histogram Computation
  • Concatenation of Histograms from the Dataset
  • TF-IDF on the Histograms
  • Histogram comparison with cosine similarity