Image Classification using Deep Learning and Neural Networks

DOI : 10.17577/IJERTV12IS030117

Download Full-Text PDF Cite this Publication

Text Only Version

Image Classification using Deep Learning and Neural Networks

P. Srinadh

Department of CSE

Koneru Lakshmiah Education Foundation Vaddeswaram, Andhra Pradesh, India

B. Sai Pavan

Department of CSE

Koneru Lakshmiah Education Foundation Vaddeswaram, Andhra Pradesh, India

  1. Naga Sai Chaitanya

    Department of CSE

    Koneru Lakshmiah Education Foundation Vaddeswaram, Andhra Pradesh, India

    1. Vidyadhar

      Department of CSE

      Koneru Lakshmiah Education Foundation Vaddeswaram, Andhra Pradesh, India

      Dr. Brajesh Kumar Shukla

      Department of CSE

      Koneru Lakshmiah Education Foundation Vaddeswaram, Andhra Pradesh, India

      AbstractImage classification is a well-known problem in image processing, computer vision, and machine learning. We investigate picture categorization using deep learning in this research. Nowadays bird watching is becoming a common hobby for everyone, but more than 10,000 species are part of the ecosystem, which causes difficulty in identification and prediction. Additionally, the birds may appear in different scenarios and also in different shapes, sizes, and colors. So, we use Convolutional Neural Network (CNN) to build the models, decreasing the dimensionality of images without losing any content by using a built-in convolutional layer. This will identify the input given by the user and starts the image processing and then compares it with a trained model and predicts the species of the bird. The model will return the output with the predicted probability of the species. If the user-given image is not available in the dataset, the model automatically adds it to the dataset which will be useful in building the dataset. This model helps in the classification and recognition of the birds. Key words: Deep Learning(DL) , Convolution Neural Network(CNN) ,Image Classification.

      Index Termscomponent, formatting, style, styling, insert

      1. INTRODUCTION

        There are a lot of bird species in our ecosystem. Every year a lot of migratory birds will visit all places. It will be an eye feast for all the bird watchers. It will give them some kind of happiness to watch them like that. But also if they can identify the species, they can be even happier. But the Identification of birds and its species is not as simple as it looks. Generally, bird categorization is often performed by ornithologists. From ages, ornithologists are undergoing through many hurdles in the bird species classification. They have to study all the details of bird species such as their presence in the ecosystem, biology, dispersion, ecological effect, and so on. Bird categorization is often performed by professional ornithologists using Linnaeus animal . So to help humans to overcome this problem, we came up with this solutio+n of applying Convolutional Neural Network, image classification and deep learning methodologies to it. This methodology of classifying and identifying the bird is

        involved in the collection of large datasets of images of bird species.

      2. RELATED WORK

        In[1], the research is based on the color features extracted from incorrigible images of bird species. The scenarios on which they experimented are enrolled with two disparate clas- sification procedures. In the first approach, the feature vectors generated by dividing the image planes are concatenated and input into a single classifier for classification, while in the second approach, individual classifiers are utilized for each feature vector.In addition to the above, the authors have also evaluated the proposed approachs scalability by considering two specific color spaces, namely RGB and HSV. This allows for a more comprehensive analysis of the approachs effec- tiveness in different color domains and its ability to handle various color formats.

        In[2], The study involved the application of Deep Learning algorithms, specifically Unsupervised Learning, to analyze a dataset of images for the purpose of identifying various bird species. Through this technique, the researchers sought to develop an effective method for classifying bird species using machine learning.The study made use of a publicly accessible dataset that was accompanied by a user-friendly website. The website allowed users to upload images of birds in any format for the purpose of recognition, and returned the desired output. The system relied on identifying key bird parts and extracting CNN features from multiple Convolutional layers, as part of the process of accurately classifying different bird species.

        The work in [3], uses Neural Networks for classifying the bird species on the dataset. When compared to raw spec- trum data, different frequency bands delta data augmentation doesnt quite improve classification accuracy, however, it is closest to the province and has an extra benefit over raw spectral data when computing resources are restricted.

        The research [4] is based on how well the Deep Neural Networks can be used in the classification of bird-species. They have created a software platform which uses deep learning as a main static process in recognizing the bird- species. A large group of dataset containing the images of different types of bird species, which will have a model for the recognition.

      3. METHODOLOGY:

        A Certain number of methodologies were employed to design the system. They are outlined here: Deep Learning, Deep Convolutional Neural Network, Tensor Flow, etc

        1. Deep Learning

          In [2], Deep learning is purposefully used to classify and analyse visual images. Deep Learning is a specialized branch of artificial intelligence (AI) that enables machines to learn and improve from data, without being explicitly programmed to do so. This advanced technology utilizes complex al- gorithms to automatically identify patterns and features in large sets of data, which can be used to make predictions or decisions. Deep learning incorporates computer systems known as neural networks. Neural networks, a fundamental component of Deep Learning, are designed to mimic the functioning of the human brain, albeit with varying degrees of success. By processing vast amounts of data, these networks are able to learn and improve their ability to perform specific tasks, such as image or speech recognition, making them a valuable tool for many applications in machine learning and artificial intelligence. Deep neural networks are made up of numerous layers of interconnected nodes, with each layer boosting and optimizing the prediction or segmentation. Forward propagation is the process of computing the output of a neural network by moving the input data through the network. The input layer of a deep neural network captures the raw data to be processed, and the output layer produces the final prediction or classification based on the information learned by the network. In between the input and output layers, there are hidden layers that transform the input data into a more useful representation for the task at hand. During forward propagation, the input data is passed through each layer in the network, and the output of one layer serves as the input to the next layer until the final output is produced by the output layer.

          Figure 1: Deep Learning Spreads

          As seen in figure 1, Upon giving the image input, the Deep Learning model will apply the Feature extraction and classifi- cation and provides the desired output.

        2. Deep Neural Networks

          From [3], Deep neural networks (DNNs) are a class of artificial neural networks (ANNs) that have multiple hidden layers between the input and output layers. The depth of a neual network refers to the number of hidden layers it contains. A simplified version of a Deep Neural Network (DNN) can be thought of as a hierarchical organization of artificial neurons, with connections between them that al- low them to communicate with each other. These neurons receive input data, process it through a series of non-linear transformations, and then pass the transformed data to other neurons in the network. The connections between neurons are weighted, and the weights are adjusted during training to optimize the networks performance on a specific task. The overall structure of the network is organized into layers, with each layer responsible for performing a specific type of computation. The layers are connected through the neuron connections, forming a complex network that can learn from input data with feedback mechanisms. In Neural Networks, in the input image, design elements like lines, gradients, circles, or even eyes and faces are extremely successfully accumu- lated. They can run directly on an underdone image and do not need any preprocessing. The figure 2, given below will represent the working model of the Deep Neural Networks.

          Figure 2 : The block diagram of Deep Neural Network

        3. Image Classification:

          From [4], it is observed that Image classification divides the data into classes by assessing numerous attributes of distinct image features. Training and testing are often used as the two steps for categorization in classification systems. An individual representation of each scenario, or training class, is made using the properties of the picture features that are mostly extracted during the training phase. These feature-space segments are then utilised to categorise image characteristics in the testing phase. In an effort to develop the ideal classifier, there exists multiple difficulties as it is rea- sonably simple for an individual to recognise a complex view.

          Figure 3 : Flow chart for image classification

        4. Process

        By using the above-mentioned methodologies- Deep Learn- ing, Deep Neural Networks, Image Processing, Tensor flow, and the large dataset which consists of 400 bird species.58388 training images, 2000 test images(5 images per species) and 2000 validation images(5 images per species). So, when a user sends an image for the classification and analysis, it will get stored in the database. Then the work starts from the end of the neural Networks. For only the purpose of training the model upto 90 percent of the dataset is allocated. Then the feature extraction will come into play. It will extract all the required features for the classification process like size, face, colour, etc. After which they will be compared with the training model and the required input will be provided to the user.

        Table 1: Training images

      4. RESULTS

        Figure 4: Visualising the loss and accuracy curve

        CLASSIFICATION REPORT:

        Figure 5:Classification report

        Figure 6: Visualising 16 pictures of the dataset with their labels

        In the Figure 6, 16 pictures of different bird species from the dataset is visualised,just as a sample of which type the bird species pictures will be stored. These are used in the process of training and testing the model which is very large in number.

        Figure 7: Displaying 25 random pictures from the dataset with theirlabels

        From Figure 7, It is observed that randomly

        25 images are selected after training the model which provides the images with the labelled data.

        Figure 8:AMERICAN KESTREL

        From figure 8, It is observed that when a user uploads an image into the system, the model has predicted and delivered the out- put as AMERICAN KESTREL with a probability of 99.75

        Figure 9:AMERICAN COOT

        From figure 9, It is observed that when a user uploads an image into the system, the model has predicted and delivered the output as AMERICAN COOT with a probability of 99.85

        Figure 10:ANHIGA

        From figure 10, It is observed that when a user uploads an image into the system, the model has predicted and delivered

        the output as ANHIGA with a probability of 26.17

        Figure 11:ANTBIRD

        From figure 11, It is observed that when a user uploads an image into the system, the model has predicted and delivered the output as ANT BIRD with a probability of 53.88

        Figure 12:BALD EAGLE

        From figure 12, It is observed that when a user uploads an image into the system, the model has predicted and delivered the output as BAD EAGLE with a probability of 98.75

        Figure 13:Confusion Matrix

      5. CONCLUSION

The present study is based on image classification using deep learning, in which a user will provide the image of a bird, and based on the Deep Neural Networks, the features in the image are extracted which will be used to classify and analyze the data. For this purpose, a special database is considered which consists of a large variety of bird-species images. Then it will be used to create the model and test and train it with the current database model. The features after this phase are collected and sends to the classifier. The classifier will classify the image and visualizes the output to the user.This study can also be used in varous fields like image processing, fraud detection and much more.

REFERENCES

[1] Marini, Andre´ia, Jacques Facon, and Alessandro L. Koerich. Bird species classification based on color features. 2013 IEEE International Conference on Systems, Man, and Cybernetics. IEEE, 2013.

[2] Ansari, Mahvish, et al. Bird Species Identification using Deep Learn- ing. NEW ARCH-INTERNATIONAL JOURNAL OF CONTEMPO- RARY ARCHITECTURE 8.2 (2021): 2191-2199.

[3] Abu, Mohd Azlan, et al. A study on Image Classification based on Deep Learning and Tensorflow. International Journal of Engineering Research and Technology 12.4 (2019): 563-569.

[4] Singh, Anisha, Akarshita Jain, and Bipin Kumar Rai. Image based Bird Species Identification. International Journal of Research in Engineering, IT and Social Sciences 10.04 (2020): 17-24.

[5] Harjoseputro, Yulius, Ign Yuda, and Kefin Pudi Danukusumo. Mo- bileNets: Efficient convolutional neural network for identification of protected birds. IJASEIT (International Journal on Advanced Science, Engineering and Information Technology) 10.6 (2020): 2290-2296.

[6] Krizhevsky, Alex, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with deep convolutional neural networks. Communica- tions of the ACM 60.6 (2017): 84-90.

[7] Sindhwani, Nidhi, et al. Performance analysis of deep neural networks using computer vision. EAI Endorsed Transactions on Industrial Net- works and Intelligent Systems 8.29 (2021): e3-e3.

[8] Raj, Satyam, et al. Image based bird species identification using convolutional neural network. Int. J. Eng. Res. Technol 9 (2020): 346.

[9] Ghosh, Susanto Kumar, and Mohammad Rafiqul Islam. Convolutional Neural Network Based on HOG Feature for Bird Species Detection and Classification. International Conference on Recent Trends in Image Processing and Pattern Recognition, Springer. Vol. 1035. 2018.

[10] Yang, Chao-Lung, et al. An Improved Transfer-Learning for Image- Based Species Classification of Protected Indonesians Birds. CMC- COMPUTERS MATERIALS CONTINUA 73.3 (2022): 4577-4593.

[11] Roslan, Rosniza, et al. Color-based bird image classification using Sup- port Vector Machine. 2017 IEEE 6th Global Conference on Consumer Electronics (GCCE). IEEE, 2017.

[12] Hussain, Mahbub, Jordan J. Bird, and Diego R. Faria. A study on cnn transfer learning for image classification. Advances in Computational Intelligence Systems: Contributions Presented at the 18th UK Workshop on Computational Intelligence, September 5-7, 2018, Nottingham, UK. Springer International Publishing, 2019.

[13] Islam, Shazzadul, et al. Bird species classification from an image using VGG-16 network. Proceedings of the 7th International Conferenc on Computer and Communications Management. 2019.