Click here to Skip to main content
15,885,032 members
Articles / Artificial Intelligence / Neural Networks

Multiple convolution neural networks approach for online handwriting recognition

Rate me:
Please Sign up or sign in to vote.
4.95/5 (37 votes)
9 Apr 2013CPOL8 min read 75.9K   25.1K   74  
The research focuses on the presentation of word recognition technique for an online handwriting recognition system which uses multiple component neural networks (MCNN) as the exchangeable parts of the classifier.
using System;
using System.Collections;

namespace SpellChecker.Dictionary.Affix
{
	/// <summary>
	///     A strongly typed enumerator for 'AffixRuleCollection'
	/// </summary>
	public class AffixRuleEnumerator : IDictionaryEnumerator
	{
		private IDictionaryEnumerator innerEnumerator;
			
		internal AffixRuleEnumerator (AffixRuleCollection enumerable)
		{
			innerEnumerator = enumerable.InnerHash.GetEnumerator();
		}

		#region Implementation of IDictionaryEnumerator
		
		/// <summary>
		///      gets the key of the current AffixRuleCollection entry.
		/// </summary>
		public string Key
		{
			get
			{
				return (string)innerEnumerator.Key;
			}
		}
		object IDictionaryEnumerator.Key
		{
			get
			{
				return Key;
			}
		}


		/// <summary>
		///     gets the value of the current AffixRuleCollection entry.
		/// </summary>
		public AffixRule Value
		{
			get
			{
				return (AffixRule)innerEnumerator.Value;
			}
		}
		object IDictionaryEnumerator.Value
		{
			get
			{
				return Value;
			}
		}

		/// <summary>
		///      gets both the key and the value of the current AffixRuleCollection entry.
		/// </summary>
		public System.Collections.DictionaryEntry Entry
		{
			get
			{
				return innerEnumerator.Entry;
			}
		}

		#endregion

		#region Implementation of IEnumerator
		
		/// <summary>
		///     Sets the enumerator to the first element in the collection
		/// </summary>
		public void Reset()
		{
			innerEnumerator.Reset();
		}

		/// <summary>
		///     Advances the enumerator to the next element of the collection
		/// </summary>
		public bool MoveNext()
		{
			return innerEnumerator.MoveNext();
		}

		/// <summary>
		///     Gets the current element from the collection
		/// </summary>
		public object Current
		{
			get
			{
				return innerEnumerator.Current;
			}
		}
		#endregion
	}
}

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
Vietnam Maritime University
Vietnam Vietnam
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions