├── .gitattributes ├── 9781484266151.jpg ├── Chapter 1.ipynb ├── Chapter1 ├── Chapter 1.ipynb ├── Chapter1 ├── Coin.png └── Mario.png ├── Chapter2 ├── Chapter2 ├── DogVsCatClassification.ipynb ├── MNIST.png └── MNISTImageUsingCNN.ipynb ├── Chapter3 ├── Chapter3 ├── GermanTrafficClassificationUsingLeNet-5.ipynb ├── Important └── LeNet MNIST Digit Classification.ipynb ├── Chapter4 ├── CIFAR10_AlexNet.ipynb ├── CIFAR10_VGG.ipynb └── Chapter4 ├── Chapter5 ├── Chapter5 └── YOLO.ipynb ├── Chapter6 ├── Chapter6 ├── Chapter6.ipynb └── Important ├── Chapter7 ├── Dataset and codes for Chapter7 ├── Important └── VideoAnalyticsChapter7.ipynb ├── Chapter8 ├── Chapter 8.ipynb ├── Chapter8 └── Hoover.jpg ├── Coin.png ├── Contributing.md ├── LICENSE.txt ├── Mario.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484266151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/9781484266151.jpg -------------------------------------------------------------------------------- /Chapter 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter 1.ipynb -------------------------------------------------------------------------------- /Chapter1/Chapter 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter1/Chapter 1.ipynb -------------------------------------------------------------------------------- /Chapter1/Chapter1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter1/Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter1/Coin.png -------------------------------------------------------------------------------- /Chapter1/Mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter1/Mario.png -------------------------------------------------------------------------------- /Chapter2/Chapter2: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter2/DogVsCatClassification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter2/DogVsCatClassification.ipynb -------------------------------------------------------------------------------- /Chapter2/MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter2/MNIST.png -------------------------------------------------------------------------------- /Chapter2/MNISTImageUsingCNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter2/MNISTImageUsingCNN.ipynb -------------------------------------------------------------------------------- /Chapter3/Chapter3: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter3/GermanTrafficClassificationUsingLeNet-5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter3/GermanTrafficClassificationUsingLeNet-5.ipynb -------------------------------------------------------------------------------- /Chapter3/Important: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter3/Important -------------------------------------------------------------------------------- /Chapter3/LeNet MNIST Digit Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter3/LeNet MNIST Digit Classification.ipynb -------------------------------------------------------------------------------- /Chapter4/CIFAR10_AlexNet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter4/CIFAR10_AlexNet.ipynb -------------------------------------------------------------------------------- /Chapter4/CIFAR10_VGG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter4/CIFAR10_VGG.ipynb -------------------------------------------------------------------------------- /Chapter4/Chapter4: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter5/Chapter5: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter5/YOLO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter5/YOLO.ipynb -------------------------------------------------------------------------------- /Chapter6/Chapter6: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter6/Chapter6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter6/Chapter6.ipynb -------------------------------------------------------------------------------- /Chapter6/Important: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter6/Important -------------------------------------------------------------------------------- /Chapter7/Dataset and codes for Chapter7: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter7/Important: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter7/Important -------------------------------------------------------------------------------- /Chapter7/VideoAnalyticsChapter7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter7/VideoAnalyticsChapter7.ipynb -------------------------------------------------------------------------------- /Chapter8/Chapter 8.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter8/Chapter 8.ipynb -------------------------------------------------------------------------------- /Chapter8/Chapter8: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter8/Hoover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Chapter8/Hoover.jpg -------------------------------------------------------------------------------- /Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Coin.png -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/Mario.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/computer-vision-using-deep-learning/HEAD/README.md --------------------------------------------------------------------------------