Click here to Skip to main content
Click here to Skip to main content

Image Recognition with Neural Networks

By , 30 Oct 2007
 
Screenshot - screen211.png

Introduction

Artificial Neural Networks are a recent development tool that are modeled from biological neural networks. The powerful side of this new tool is its ability to solve problems that are very hard to be solved by traditional computing methods (e.g. by algorithms). This work briefly explains Artificial Neural Networks and their applications, describing how to implement a simple ANN for image recognition.

Background

I will try to make the idea clear to the reader who is just interested in the topic.

About Artificial Neural Networks (ANNs)

Artificial Neural Networks (ANNs) are a new approach that follow a different way from traditional computing methods to solve problems. Since conventional computers use algorithmic approach, if the specific steps that the computer needs to follow are not known, the computer cannot solve the problem. That means, traditional computing methods can only solve the problems that we have already understood and knew how to solve. However, ANNs are, in some way, much more powerful because they can solve problems that we do not exactly know how to solve. That's why, of late, their usage is spreading over a wide range of area including, virus detection, robot control, intrusion detection systems, pattern (image, fingerprint, noise..) recognition and so on.

ANNs have the ability to adapt, learn, generalize, cluster or organize data. There are many structures of ANNs including, Percepton, Adaline, Madaline, Kohonen, BackPropagation and many others. Probably, BackPropagation ANN is the most commonly used, as it is very simple to implement and effective. In this work, we will deal with BackPropagation ANNs.

BackPropagation ANNs contain one or more layers each of which are linked to the next layer. The first layer is called the "input layer" which meets the initial input (e.g. pixels from a letter) and so does the last one "output layer" which usually holds the input's identifier (e.g. name of the input letter). The layers between input and output layers are called "hidden layer(s)" which only propagate the previous layer's outputs to the next layer and [back] propagates the following layer's error to the previous layer. Actually, these are the main operations of training a BackPropagation ANN which follows a few steps.

A typical BackPropagation ANN is as depicted below. The black nodes (on the extreme left) are the initial inputs. Training such a network involves two phases. In the first phase, the inputs are propagated forward to compute the outputs for each output node. Then, each of these outputs are subtracted from its desired output, causing an error [an error for each output node]. In the second phase, each of these output errors is passed backward and the weights are fixed. These two phases is continued until the sum of [square of output errors] reaches an acceptable value.

Screenshot - fig1_nnet_thinner.png

Implementation

The network layers in the figure above are implemented as arrays of structs. The nodes of the layers are implemented as follows:

[Serializable]
struct PreInput
{
    public double Value;
    public double[] Weights;            
};

[Serializable]
struct Input
{
    public double InputSum;                
    public double Output;                
    public double Error;                
    public double[] Weights;        
};
            
[Serializable]        
struct Hidden        
{                
    public double InputSum;                    
    public double Output;                
    public double Error;                
    public double[] Weights;        
};
            
[Serializable]        
struct Output<T> where T : IComparable<T>         
{                
    public double InputSum;                
    public double output;                
    public double Error;                
    public double Target;     
    public T Value;   
};

The layers in the figure are implemented as follows (for a three layer network):

private PreInput[] PreInputLayer;
private Input[] InputLayer;
private Hidden[] HiddenLayer;
private Output<string>[] OutputLayer;

Training the network can be summarized as follows:

  • Apply input to the network.
  • Calculate the output.
  • Compare the resulting output with the desired output for the given input. This is called the error.
  • Modify the weights for all neurons using the error.
  • Repeat the process until the error reaches an acceptable value (e.g. error < 1%), which means that the NN was trained successfully, or if we reach a maximum count of iterations, which means that the NN training was not successful.

It is represented as shown below:

void TrainNetwork(TrainingSet,MaxError)
{
     while(CurrentError>MaxError)
     {
          foreach(Pattern in TrainingSet)
          {
               ForwardPropagate(Pattern);//calculate output 
               BackPropagate()//fix errors, update weights
          }
     }
}

This is implemented as follows:

public bool Train()
{
    double currentError = 0;
    int currentIteration = 0;
    NeuralEventArgs Args = new NeuralEventArgs() ;

    do
    {
        currentError = 0;
        foreach (KeyValuePair<T, double[]> p in TrainingSet)
        {
            NeuralNet.ForwardPropagate(p.Value, p.Key);
            NeuralNet.BackPropagate();
            currentError += NeuralNet.GetError();
        }
                
        currentIteration++;
    
        if (IterationChanged != null && currentIteration % 5 == 0)
        {
            Args.CurrentError = currentError;
            Args.CurrentIteration = currentIteration;
            IterationChanged(this, Args);
        }

    } while (currentError > maximumError && currentIteration < 
    maximumIteration && !Args.Stop);

    if (IterationChanged != null)
    {
        Args.CurrentError = currentError;
        Args.CurrentIteration = currentIteration;
        IterationChanged(this, Args);
    }

    if (currentIteration >= maximumIteration || Args.Stop)   
        return false;//Training Not Successful
            
    return true;
}

Where ForwardPropagate(..) and BackPropagate() methods are as shown for a three layer network:

private void ForwardPropagate(double[] pattern, T output)
{
    int i, j;
    double total;
    //Apply input to the network
    for (i = 0; i < PreInputNum; i++)
    {
        PreInputLayer[i].Value = pattern[i];
    }
    //Calculate The First(Input) Layer's Inputs and Outputs
    for (i = 0; i < InputNum; i++)
    {
        total = 0.0;
        for (j = 0; j < PreInputNum; j++)
        {
            total += PreInputLayer[j].Value * PreInputLayer[j].Weights[i];
        }
        InputLayer[i].InputSum = total;
        InputLayer[i].Output = F(total);
    }
    //Calculate The Second(Hidden) Layer's Inputs and Outputs
    for (i = 0; i < HiddenNum; i++)
    {
        total = 0.0;
        for (j = 0; j < InputNum; j++)
        {
            total += InputLayer[j].Output * InputLayer[j].Weights[i];
        }

        HiddenLayer[i].InputSum = total;
        HiddenLayer[i].Output = F(total);
    }
    //Calculate The Third(Output) Layer's Inputs, Outputs, Targets and Errors
    for (i = 0; i < OutputNum; i++)
    {
        total = 0.0;
        for (j = 0; j < HiddenNum; j++)
        {
            total += HiddenLayer[j].Output * HiddenLayer[j].Weights[i];
        }

        OutputLayer[i].InputSum = total;
        OutputLayer[i].output = F(total);
        OutputLayer[i].Target = OutputLayer[i].Value.CompareTo(output) == 0 ? 1.0 : 0.0;
        OutputLayer[i].Error = (OutputLayer[i].Target - OutputLayer[i].output) *
                                       (OutputLayer[i].output) * (1 - OutputLayer[i].output);
        }
    }        
    
private void BackPropagate()
{
    int i, j;
    double total;
    //Fix Hidden Layer's Error
    for (i = 0; i < HiddenNum; i++)
    {
        total = 0.0;
        for (j = 0; j < OutputNum; j++)
        {
            total += HiddenLayer[i].Weights[j] * OutputLayer[j].Error;
        }
        HiddenLayer[i].Error = total;
    }
    //Fix Input Layer's Error
    for (i = 0; i < InputNum; i++)
    {
        total = 0.0;
        for (j = 0; j < HiddenNum; j++)
        {
            total += InputLayer[i].Weights[j] * HiddenLayer[j].Error;
        }
        InputLayer[i].Error = total;
    }
    //Update The First Layer's Weights
    for (i = 0; i < InputNum; i++)
    {
        for(j = 0; j < PreInputNum; j++)
        {
            PreInputLayer[j].Weights[i] +=
                LearningRate * InputLayer[i].Error * PreInputLayer[j].Value;
        }
    }
    //Update The Second Layer's Weights
    for (i = 0; i < HiddenNum; i++)
    {
        for (j = 0; j < InputNum; j++)
        {
            InputLayer[j].Weights[i] +=
                LearningRate * HiddenLayer[i].Error * InputLayer[j].Output;
        }
    }
    //Update The Third Layer's Weights
    for (i = 0; i < OutputNum; i++)
    {
        for (j = 0; j < HiddenNum; j++)
        {
            HiddenLayer[j].Weights[i] +=
                LearningRate * OutputLayer[i].Error * HiddenLayer[j].Output;
        }
    }
}

Testing the App

The program trains the network using bitmap images that are located in a folder. This folder must be in the following format:

  • There must be one (input) folder that contains input images [*.bmp].
  • Each image's name is the target (or output) value for the network (the pixel values of the image are the inputs, of course) .

As testing the classes requires to train the network first, there must be a folder in this format. "PATTERNS" and "ICONS" folders [depicted below] in the Debug folder fit this format.

Screenshot - fig2_sampleInput_thinner.png Screenshot - fig3_sampleInput_thinner.png

History

  • 30th September, 2007: Simplified the app
  • 24th June, 2007: Initial Release

References & External Links

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Murat Firat
Software Developer (Senior)
Turkey Turkey
Member
Has BS degree on CS, working as SW engineer at istanbul.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralFinger print Reconization Pinmemberwaqas munim27 Jul '10 - 7:02 
Generalblood cell images recognition [modified] Pinmemberkushagra.thakur11 Jul '10 - 16:36 
Questionquestion Pinmemberdiedou21 Jun '10 - 3:41 
QuestionNetwork...? Pinmembermimi251313 Jun '10 - 6:36 
QuestionTraining image PinmemberMinju8713 Jun '10 - 4:05 
Generalhight and low? [modified] Pinmemberyeah100028 Apr '10 - 7:43 
QuestionTrain 2 by 2 and Then Join the .Net file ? Pinmembersubsari1222 Apr '10 - 21:40 
Generalgreat work PinmemberMikant8 Feb '10 - 10:51 
Generaladdition Pinmemberrasleen_136 Dec '09 - 5:04 
Questionhigh n low ? Pinmemberrasleen_136 Dec '09 - 5:00 
QuestionHow can i know what is desired output of each node? Pinmemberranzan Pokhrel14 Nov '09 - 16:01 
GeneralComplex Numbers PinmemberKadirErturk22 Oct '09 - 19:59 
Questionidentification value in Image Recognition with Neural Networks [modified] Pinmemberhankia14112 Oct '09 - 20:40 
GeneralAwesome!!!! Pinmemberzorou19 Aug '09 - 8:11 
Questionwhat is the activation function?????? Pinmembershanaprasad200910 Jun '09 - 12:16 
Generalwebcame Pinmemberzulham9714 May '09 - 22:08 
Questionhey need help PinmemberMember 45307714 May '09 - 0:03 
Questionwhat is the convergence? Pinmemberonuriztech7 Apr '09 - 9:27 
QuestionCurrent Error Pinmemberjimbobmcgee30 Mar '09 - 9:00 
Generalproblem running and compiling Pinmemberprophet8617 Mar '09 - 8:15 
General[Message Deleted] PinmemberMember 453077115 Mar '09 - 3:15 
GeneralCode in VB.Net Pinmembermu'a7 Mar '09 - 9:44 
Questionwhat can i do to increase acuracy? PinmemberMember 45307713 Mar '09 - 4:00 
GeneralUnhandled exception PinmemberCristinaF8 Dec '08 - 7:41 
QuestionClassification Image....? Pinmemberdemonlove7 Dec '08 - 4:04 
Questionis this feed forward neural network? PinmemberMember 453077129 Nov '08 - 20:35 
QuestionTraining takes so long time, any idea? Pinmembertulipvn18 Nov '08 - 0:26 
GeneralCompiling Error in Visual C# 2008 Express Pinmembermangotj17 Oct '08 - 16:02 
Questionrecognition Pinmemberbrimzi12 Oct '08 - 23:59 
GeneralQuestion [modified] Pinmembertulipvn8 Oct '08 - 0:41 
QuestionJava version? Pinmembertulipvn23 Sep '08 - 4:43 
GeneralImage size and accuracy Pinmembervisusnet22 Sep '08 - 11:00 
GeneralCalculating output layer error Pinmemberjack_wind11 Sep '08 - 22:32 
Questionhowto Apply BackPropagation in FingerPrint image matching? Pinmemberswdev.bali27 Aug '08 - 0:22 
QuestionGreat aplication - Generalization Pinmemberignacio.7811 Aug '08 - 12:58 
GeneralUnable to download Pinmembershery_sa9 Jul '08 - 8:53 
QuestionImageProcessing.ToMatrix Pinmemberdenny_cucu14 Jun '08 - 22:30 
QuestionImage Detection PinmemberYehudaG12 May '08 - 4:12 
Questionwhat is the initial value of output layer??? Pinmembersandipmuk7 May '08 - 21:18 
Questionwhats the network archeticture? Pinmemberjamilkhan00723 Apr '08 - 21:46 
QuestionFace Detection Nueral Network? Pinmemberjamilkhan00718 Apr '08 - 1:53 
QuestionImage Recognition Advanced Engine Development Pinmemberankswe15 Apr '08 - 3:51 
GeneralExcellent! Pinmembernewbie0827 Mar '08 - 1:00 
GeneralYou are awesome! Pinmemberjadeburton20 Mar '08 - 14:52 
Generalpattern recognition PinmemberK|nS|ayer28 Feb '08 - 21:01 
Questionpattern recognition method Pinmemberrie athena6 Feb '08 - 14:00 
GeneralThreshold Value Pinmembercbc100031 Dec '07 - 14:40 
GeneralAbout the pattern and input Pinmemberrandy1014198326 Nov '07 - 2:51 
GeneralAbout demo project Pinmembernewrocker24 Nov '07 - 20:27 
GeneralQuestions Pinmemberrandy1014198324 Nov '07 - 16:43 
QuestionDoubt in Input and Hidden Node. PinmemberVimalr18 Nov '07 - 19:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 30 Oct 2007
Article Copyright 2007 by Murat Firat
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid