arrenglover / openfabmap

Open-source C++ code for the FAB-MAP visual place recognition algorithm
Other
218 stars 68 forks source link

Can not find the parameters under the FABMAP VISUALISATION heading in the settings file #26

Closed LuoXin0826 closed 3 years ago

LuoXin0826 commented 3 years ago

Hi everyone, I've followed the steps in visualization and got the result.txt file, but I could not see the image thumbnails. I was thinking that it may be the problem of monitor size and thumbnail size, so I get into the setting file, but I cannot find these two parameters. Could anyone tell me where I can find these parameters?

arrenglover commented 3 years ago

Hi @LuoXin0826 . There are two ways to visualise what is going on with openFABMAP.

  1. Qualitative visualisation of the features you are detecting, mostly to estimate if you are extracting a "good" amount of features, and that they are consistent amounts over the dataset. It just shows the input to the fabmap algorithm.
  2. Visualise the final results - using the results.txt file you can load it in your preferred way (e.g. Matlab) and use your own plotting tools to visualise the final results and do any extra analysis.

From your issue I'm not sure exactly what you were expecting - let me know if you need more details on either of these steps. Here's the instructions: https://github.com/arrenglover/openfabmap/wiki/Visualisation

LuoXin0826 commented 3 years ago

Thank you for your response! I've loaded the result.txt file to matlab, but I'm not sure what's those numbers representing

arrenglover commented 3 years ago

For example check out the original FAB-MAP page: http://www.robots.ox.ac.uk/~mjc/Software.htm

This image: image

shows the probabilities of any one appearance matching a previously seen place. A typical "loop closure" could like like this - where the main diagonal is the locations matching to themselves with high probability and the secondary diagonal is the "second loop" matching to the original locations.

hope it helps