├── .gitignore ├── README.md ├── create_dataset.py ├── dataset.txt ├── include ├── cnn ├── config.h └── header.h ├── new_dataset.txt └── src ├── Complete_Conv_test.cu ├── Makefile ├── Traffic_sign.cu ├── kernel.cu ├── main_Activation.cu ├── main_pool_fc.cu ├── preprocessing.cu └── test.cu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/README.md -------------------------------------------------------------------------------- /create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/create_dataset.py -------------------------------------------------------------------------------- /dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/dataset.txt -------------------------------------------------------------------------------- /include/cnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/include/cnn -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/include/config.h -------------------------------------------------------------------------------- /include/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/include/header.h -------------------------------------------------------------------------------- /new_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/new_dataset.txt -------------------------------------------------------------------------------- /src/Complete_Conv_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/Complete_Conv_test.cu -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Traffic_sign.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/Traffic_sign.cu -------------------------------------------------------------------------------- /src/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/kernel.cu -------------------------------------------------------------------------------- /src/main_Activation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/main_Activation.cu -------------------------------------------------------------------------------- /src/main_pool_fc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/main_pool_fc.cu -------------------------------------------------------------------------------- /src/preprocessing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/preprocessing.cu -------------------------------------------------------------------------------- /src/test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhanthaldar/CUDA-CNN-Traffic-Sign-Recognition/HEAD/src/test.cu --------------------------------------------------------------------------------