├── .gitignore ├── LICENSE ├── README.md ├── models ├── fine_tuned │ ├── solver.prototxt │ └── triplet_vgg16_pool4_fc_128_fine_train.prototxt ├── not_fine_tuned │ ├── solver.prototxt │ └── triplet_vgg16_pool4_fc_128_train.prototxt └── vgg16_pool4_fc128_deploy.prototxt ├── requirements.txt └── test_nordland.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/README.md -------------------------------------------------------------------------------- /models/fine_tuned/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/models/fine_tuned/solver.prototxt -------------------------------------------------------------------------------- /models/fine_tuned/triplet_vgg16_pool4_fc_128_fine_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/models/fine_tuned/triplet_vgg16_pool4_fc_128_fine_train.prototxt -------------------------------------------------------------------------------- /models/not_fine_tuned/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/models/not_fine_tuned/solver.prototxt -------------------------------------------------------------------------------- /models/not_fine_tuned/triplet_vgg16_pool4_fc_128_train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/models/not_fine_tuned/triplet_vgg16_pool4_fc_128_train.prototxt -------------------------------------------------------------------------------- /models/vgg16_pool4_fc128_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/models/vgg16_pool4_fc128_deploy.prototxt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_nordland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmfacil/single-view-place-recognition/HEAD/test_nordland.py --------------------------------------------------------------------------------