Image Weather Classification
CNN based weather classifier Convolutional Neural Network also known as CNN are of grate use when it comes to image data. They can be used to get both low level features and high level features. CNN are used in many places now and is future of robotics. uses of CNN Robotic Vision Biometric identification object detection and tracking Self Driving Car Object Identification We are going to classify weather images using Convolutional Neural Network. This task can be performed in multiple ways and we are going to classify weather using regression network. The Network I have created is given below. python libraries required numpy os glob OpenCV Tensorflow keras Pands Matplotlib For weather classification problem download the dataset from link( link ) Dataset description number of images 1025 size of images variable labels are mentioned in the name of images number of labels 4 ['cloudy' , 'rain', 'shine', 'sunrise'] Create a file labelgenerator.py to genera...