Click here to Skip to main content
15,885,890 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 76K   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.Generic;
using System.Linq;

namespace UPImage.FileFormat
{
    public class UPDataDocumentation : UPMandatoryDeclarations
    {
        /*
            .KEYWORDS .DATA_CONTACT [F]	 Where to reach the person responsible to answer questions about the database.
            .KEYWORDS .DATA_INFO [F]			Nature and structure of the data.
            .KEYWORDS .SETUP [F]			Data collection recording conditions.
            .KEYWORDS .PAD [F]			Data collection device.
        */

        public String datacontact;
        public String datainfo;
        public String setup;
        public String pad;
        public UPDataDocumentation()
        {
        }
        protected void SetDataDocument(UPKEYWORD kw)
        {
            switch (kw.keyName)
            {
                case ".DATA_CONTACT":
                    //dataDoc.datacontact = kw;
                    break;
                case ".DATA_INFO ":
                    //dataDoc.datainfo = kw;
                    break;
                case ".SETUP":
                    //dataDoc.setup = kw;
                    break;
                case ".PAD":
                    //dataDoc.pad = kw;
                    break;
            }
        }
    }
}

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