예제 #1
0
파일: Holder.cs 프로젝트: xnimorz/NeuralNew
 public static Holder GetInstance(int width, int height)
 {
     if (instance == null)
     {
         instance = new Holder(width, height);
     }
     return instance;
 }
예제 #2
0
파일: Form1.cs 프로젝트: xnimorz/NeuralNew
        public Form1()
        {
            InitializeComponent();
            objects = Holder.GetInstance(Preview.Width, Preview.Height);

            //this.Clear();

            ReadFile();
        }