示例#1
0
文件: Form1.cs 项目: JFFby/MRO
 public Form1()
 {
     InitializeComponent();
     var watch = new Stopwatch();
     watch.Start();
     perceptron = new Perceptron(Config.CountOfRElements, Config.ACount, Config.XCount);
     InitializeGrid();
     imgHendler = new CustomImageHendler(Config.ImgFolder,
         (b, c) => new CustomImage<ClassType>(b, c));
     watch.Stop();
     this.Text = string.Format("{0} | {1}", "DarkProgramming", watch.ElapsedMilliseconds);
 }
示例#2
0
文件: AToL.cs 项目: JFFby/MRO
 public AToL(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     ItnitGtid();
 }
示例#3
0
文件: XTA.cs 项目: JFFby/MRO
 public XTA(Perceptron perceptron)
 {
     InitializeComponent();
     this.perceptron = perceptron;
     InitGrids();
 }