Ejemplo n.º 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (net == null)
     {
         return;
     }
     this.Cursor = Cursors.WaitCursor;
     work.SetNoise(trackBar.Value * 5);
     for (int i = 0; i < work.noiseList.Count; i++)
     {
         textClusterNoise[i].Text = net.getCluster(work.vectorsNoise[i]).ToString();
         pBoxNoise[i].Image       = WorkImage.Zoom(work.noiseList[i], 10);
     }
     this.Cursor = Cursors.Arrow;
 }
Ejemplo n.º 2
0
        public Form1()
        {
            InitializeComponent();
            for (int i = 0; i < pBox.Length; i++)
            {
                pBox[i]          = new PictureBox();
                pBox[i].Location = new System.Drawing.Point(START_X + i * OFFSET + i * SIZE_BOX.Width, START_Y);
                pBox[i].Name     = "pictureBox";
                pBox[i].Size     = SIZE_BOX;
                pBox[i].SizeMode = PictureBoxSizeMode.StretchImage;
                pBox[i].Image    = WorkImage.Zoom(work.list[i], 10);
                this.panel1.Controls.Add(pBox[i]);

                pBoxNoise[i]          = new PictureBox();
                pBoxNoise[i].Location = new System.Drawing.Point(START_X + i * OFFSET + i * SIZE_BOX.Width, START_Y);
                pBoxNoise[i].Name     = "pictureBox";
                pBoxNoise[i].Size     = SIZE_BOX;
                pBoxNoise[i].SizeMode = PictureBoxSizeMode.StretchImage;
                this.panel2.Controls.Add(pBoxNoise[i]);
            }
            for (int i = 0; i < textCluster.Length; i++)
            {
                textCluster[i]          = new Label();
                textCluster[i].Location = new Point(START_X + i * OFFSET + i * SIZE_BOX.Width, START_Y + OFFSET + SIZE_BOX.Height);
                textCluster[i].Size     = SIZE_TEXT;
                this.panel1.Controls.Add(textCluster[i]);
                textClusterNoise[i]          = new Label();
                textClusterNoise[i].Location = new Point(START_X + i * OFFSET + i * SIZE_BOX.Width, START_Y + OFFSET + SIZE_BOX.Height);
                textClusterNoise[i].Size     = SIZE_TEXT;
                this.panel2.Controls.Add(textClusterNoise[i]);
            }
            textNumberNeurons.Text = "3";
            textEpohNumbet.Text    = "1000";
            textBound.Text         = "0.0001";
            textSpeed.Text         = "0.01";
        }