├── CMakeLists.txt ├── HOW_TO_INSTALL.txt ├── HOW_TO_SEARCH.txt ├── HOW_TO_TRAINING.txt ├── LICENSE.TXT ├── README.md ├── ReleaseVersion ├── CQParameters.cpp ├── CQParameters.h ├── ClosureCluster.cpp ├── ClosureCluster.h ├── Cluster.cpp ├── Cluster.h ├── ClusterCommon.cpp ├── ClusterCommon.h ├── CompositeQuantization.cpp ├── CompositeQuantization.h ├── DataUtil.h ├── Dataset.h ├── Demo.cpp ├── Distance.h ├── Kmeans.cpp ├── Kmeans.h ├── NoConstraintCompositeQuantization.cpp ├── NoConstraintCompositeQuantization.h ├── PartitioningTree.cpp ├── PartitioningTree.h ├── ProductQuantization.cpp ├── ProductQuantization.h ├── Searcher.cpp ├── Searcher.h ├── config.txt ├── lbfgs.c ├── lbfgs.h └── lbfgslib │ └── lbfgs.lib └── lbfgslib └── lbfgs.lib /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HOW_TO_INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/HOW_TO_INSTALL.txt -------------------------------------------------------------------------------- /HOW_TO_SEARCH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/HOW_TO_SEARCH.txt -------------------------------------------------------------------------------- /HOW_TO_TRAINING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/HOW_TO_TRAINING.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseVersion/CQParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/CQParameters.cpp -------------------------------------------------------------------------------- /ReleaseVersion/CQParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/CQParameters.h -------------------------------------------------------------------------------- /ReleaseVersion/ClosureCluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ClosureCluster.cpp -------------------------------------------------------------------------------- /ReleaseVersion/ClosureCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ClosureCluster.h -------------------------------------------------------------------------------- /ReleaseVersion/Cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Cluster.cpp -------------------------------------------------------------------------------- /ReleaseVersion/Cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Cluster.h -------------------------------------------------------------------------------- /ReleaseVersion/ClusterCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ClusterCommon.cpp -------------------------------------------------------------------------------- /ReleaseVersion/ClusterCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ClusterCommon.h -------------------------------------------------------------------------------- /ReleaseVersion/CompositeQuantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/CompositeQuantization.cpp -------------------------------------------------------------------------------- /ReleaseVersion/CompositeQuantization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/CompositeQuantization.h -------------------------------------------------------------------------------- /ReleaseVersion/DataUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/DataUtil.h -------------------------------------------------------------------------------- /ReleaseVersion/Dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Dataset.h -------------------------------------------------------------------------------- /ReleaseVersion/Demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Demo.cpp -------------------------------------------------------------------------------- /ReleaseVersion/Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Distance.h -------------------------------------------------------------------------------- /ReleaseVersion/Kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Kmeans.cpp -------------------------------------------------------------------------------- /ReleaseVersion/Kmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Kmeans.h -------------------------------------------------------------------------------- /ReleaseVersion/NoConstraintCompositeQuantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/NoConstraintCompositeQuantization.cpp -------------------------------------------------------------------------------- /ReleaseVersion/NoConstraintCompositeQuantization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/NoConstraintCompositeQuantization.h -------------------------------------------------------------------------------- /ReleaseVersion/PartitioningTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/PartitioningTree.cpp -------------------------------------------------------------------------------- /ReleaseVersion/PartitioningTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/PartitioningTree.h -------------------------------------------------------------------------------- /ReleaseVersion/ProductQuantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ProductQuantization.cpp -------------------------------------------------------------------------------- /ReleaseVersion/ProductQuantization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/ProductQuantization.h -------------------------------------------------------------------------------- /ReleaseVersion/Searcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Searcher.cpp -------------------------------------------------------------------------------- /ReleaseVersion/Searcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/Searcher.h -------------------------------------------------------------------------------- /ReleaseVersion/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/config.txt -------------------------------------------------------------------------------- /ReleaseVersion/lbfgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/lbfgs.c -------------------------------------------------------------------------------- /ReleaseVersion/lbfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/lbfgs.h -------------------------------------------------------------------------------- /ReleaseVersion/lbfgslib/lbfgs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/ReleaseVersion/lbfgslib/lbfgs.lib -------------------------------------------------------------------------------- /lbfgslib/lbfgs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozting/CompositeQuantization/HEAD/lbfgslib/lbfgs.lib --------------------------------------------------------------------------------