├── README.md ├── VLADlib ├── Descriptors.py └── VLAD.py ├── VLADtoCSV.py ├── VLADtoPRJ.py ├── describe.py ├── indexBallTree.py ├── pairwiseDistace.py ├── papers ├── 05432202.pdf ├── arandjelovic13.pdf ├── nextvlad.pdf └── paper.pdf ├── query.py ├── visualDictionary.py ├── vladDescriptors.py └── vladDescriptorsPerPDF.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/README.md -------------------------------------------------------------------------------- /VLADlib/Descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/VLADlib/Descriptors.py -------------------------------------------------------------------------------- /VLADlib/VLAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/VLADlib/VLAD.py -------------------------------------------------------------------------------- /VLADtoCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/VLADtoCSV.py -------------------------------------------------------------------------------- /VLADtoPRJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/VLADtoPRJ.py -------------------------------------------------------------------------------- /describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/describe.py -------------------------------------------------------------------------------- /indexBallTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/indexBallTree.py -------------------------------------------------------------------------------- /pairwiseDistace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/pairwiseDistace.py -------------------------------------------------------------------------------- /papers/05432202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/papers/05432202.pdf -------------------------------------------------------------------------------- /papers/arandjelovic13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/papers/arandjelovic13.pdf -------------------------------------------------------------------------------- /papers/nextvlad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/papers/nextvlad.pdf -------------------------------------------------------------------------------- /papers/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/papers/paper.pdf -------------------------------------------------------------------------------- /query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/query.py -------------------------------------------------------------------------------- /visualDictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/visualDictionary.py -------------------------------------------------------------------------------- /vladDescriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/vladDescriptors.py -------------------------------------------------------------------------------- /vladDescriptorsPerPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxbi/PyVLAD/HEAD/vladDescriptorsPerPDF.py --------------------------------------------------------------------------------