├── .gitignore ├── Doxyfile ├── LICENSE ├── README.md ├── cnn_inference.c ├── cnn_inference.h ├── generator.py ├── h5_format.c ├── h5_format.h ├── rgb_format.c ├── rgb_format.h ├── rgb_prep.py └── sample_model.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/README.md -------------------------------------------------------------------------------- /cnn_inference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/cnn_inference.c -------------------------------------------------------------------------------- /cnn_inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/cnn_inference.h -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/generator.py -------------------------------------------------------------------------------- /h5_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/h5_format.c -------------------------------------------------------------------------------- /h5_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/h5_format.h -------------------------------------------------------------------------------- /rgb_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/rgb_format.c -------------------------------------------------------------------------------- /rgb_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/rgb_format.h -------------------------------------------------------------------------------- /rgb_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/rgb_prep.py -------------------------------------------------------------------------------- /sample_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canyalniz/CNN-Inference-Didactic/HEAD/sample_model.c --------------------------------------------------------------------------------