Click here to Skip to main content
15,881,938 members
Articles / Multimedia / GDI+

Large pattern recognition system using multi neural networks

Rate me:
Please Sign up or sign in to vote.
4.94/5 (71 votes)
31 May 2012CPOL7 min read 212.2K   253.2K   192  
Tutorials of using multi neural networks for large pattern recognition system, handwriting recognition system
namespace UNIPENviewer
{
    partial class MainForm
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.optionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.upImageViewer1 = new NNControl.UPViewer.UpImageViewer();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.uP_NNTrainingControl1 = new NNControl.NNTraining.UP_NNTrainingControl();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.nnTestingControl1 = new NNControl.NNTesting.NNTestingControl();
            this.menuStrip1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.editToolStripMenuItem,
            this.optionToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(880, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "File";
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
            this.editToolStripMenuItem.Text = "Edit";
            // 
            // optionToolStripMenuItem
            // 
            this.optionToolStripMenuItem.Name = "optionToolStripMenuItem";
            this.optionToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
            this.optionToolStripMenuItem.Text = "Option";
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 24);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(880, 475);
            this.tabControl1.TabIndex = 1;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.upImageViewer1);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(872, 449);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "UNIPEN Data browser";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // upImageViewer1
            // 
            this.upImageViewer1.BackgroundColor = System.Drawing.SystemColors.ControlLight;
            this.upImageViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.upImageViewer1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.upImageViewer1.Image = null;
            this.upImageViewer1.Location = new System.Drawing.Point(3, 3);
            this.upImageViewer1.MaxDegreeOfParallelism = 4;
            this.upImageViewer1.MenuColor = System.Drawing.Color.LightSteelBlue;
            this.upImageViewer1.MenuPanelColor = System.Drawing.Color.LightSteelBlue;
            this.upImageViewer1.MinimumSize = new System.Drawing.Size(454, 157);
            this.upImageViewer1.Name = "upImageViewer1";
            this.upImageViewer1.NavigationPanelColor = System.Drawing.Color.LightSteelBlue;
            this.upImageViewer1.NavigationTextColor = System.Drawing.SystemColors.ButtonHighlight;
            this.upImageViewer1.Networks = null;
            this.upImageViewer1.OpenButton = false;
            this.upImageViewer1.PreviewButton = false;
            this.upImageViewer1.PreviewPanelColor = System.Drawing.Color.LightSteelBlue;
            this.upImageViewer1.PreviewText = "Preview";
            this.upImageViewer1.PreviewTextColor = System.Drawing.SystemColors.ButtonHighlight;
            this.upImageViewer1.Rotation = 0;
            this.upImageViewer1.Scrollbars = false;
            this.upImageViewer1.ShowPreview = true;
            this.upImageViewer1.Size = new System.Drawing.Size(866, 443);
            this.upImageViewer1.TabIndex = 0;
            this.upImageViewer1.TextColor = System.Drawing.SystemColors.ButtonHighlight;
            this.upImageViewer1.Zoom = 100D;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.uP_NNTrainingControl1);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(872, 449);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "UP-NN Training";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // uP_NNTrainingControl1
            // 
            this.uP_NNTrainingControl1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.uP_NNTrainingControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uP_NNTrainingControl1.Location = new System.Drawing.Point(3, 3);
            this.uP_NNTrainingControl1.MaxDegreeOfParallelism = 4;
            this.uP_NNTrainingControl1.Name = "uP_NNTrainingControl1";
            this.uP_NNTrainingControl1.Size = new System.Drawing.Size(866, 443);
            this.uP_NNTrainingControl1.TabIndex = 0;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.nnTestingControl1);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(872, 449);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "UP-NN testing";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // nnTestingControl1
            // 
            this.nnTestingControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.nnTestingControl1.Location = new System.Drawing.Point(0, 0);
            this.nnTestingControl1.MaxDegreeOfParallelism = 4;
            this.nnTestingControl1.Name = "nnTestingControl1";
            this.nnTestingControl1.Size = new System.Drawing.Size(872, 449);
            this.nnTestingControl1.TabIndex = 0;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(880, 499);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "UNIPEN database viewer";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage3.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem optionToolStripMenuItem;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.TabPage tabPage2;
        private NNControl.NNTraining.UP_NNTrainingControl uP_NNTrainingControl1;
        private System.Windows.Forms.TabPage tabPage3;
        private NNControl.UPViewer.UpImageViewer upImageViewer1;
        private NNControl.NNTesting.NNTestingControl nnTestingControl1;




    }
}

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