Click here to Skip to main content
15,886,799 members
Articles / Programming Languages / C#

Image Recognition with Neural Networks

Rate me:
Please Sign up or sign in to vote.
4.82/5 (89 votes)
30 Oct 2007CPOL4 min read 957.7K   46.2K   286  
This article contains a brief description of BackPropagation Artificial Neural Network and its implementation for Image Recognition
/*##########################################################################
 * 
 * BPBase.cs
 * -------------------------------------------------------------------------
 * By
 * Murat FIRAT, June 2007
 * muratti24@gmail.com
 * 
 * -------------------------------------------------------------------------
 * Description:
 * BPBase.cs Contains Common Structs For Backpropagation Neural Network
 * 
 * -------------------------------------------------------------------------
 * Notes:
 * Not Available
 * 
 * -------------------------------------------------------------------------
 ###########################################################################*/

using System;

namespace ANNBase
{
        
        [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 
		{
            public double InputSum;
            public double output;
            public double Error;
            public double Target;
		};
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior)
Turkey Turkey
Has BS degree on computer science, working as software engineer in istanbul.

Comments and Discussions