├── .gitignore ├── README.md ├── _config.yml ├── classification.py ├── data_helper.py ├── load_cifar.py ├── load_grayscale.py ├── main.py ├── operators ├── cslbp.py ├── csldmp.py ├── csldp.py ├── cslmp.py ├── csltp.py ├── xcslbp.py ├── xcslmp.py └── xcsltp.py ├── preprocess.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/_config.yml -------------------------------------------------------------------------------- /classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/classification.py -------------------------------------------------------------------------------- /data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/data_helper.py -------------------------------------------------------------------------------- /load_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/load_cifar.py -------------------------------------------------------------------------------- /load_grayscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/load_grayscale.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/main.py -------------------------------------------------------------------------------- /operators/cslbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/cslbp.py -------------------------------------------------------------------------------- /operators/csldmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/csldmp.py -------------------------------------------------------------------------------- /operators/csldp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/csldp.py -------------------------------------------------------------------------------- /operators/cslmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/cslmp.py -------------------------------------------------------------------------------- /operators/csltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/csltp.py -------------------------------------------------------------------------------- /operators/xcslbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/xcslbp.py -------------------------------------------------------------------------------- /operators/xcslmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/xcslmp.py -------------------------------------------------------------------------------- /operators/xcsltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/operators/xcsltp.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdevmcitylp/local-descriptors-for-image-classification/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------