Ejemplo n.º 1
0
        public void NeuroNet()
        {
            netw = new NeuroNetwork(GlobalForm, yoloWrapper, listPhotos);
            netw.StartAnalyzingPhotos(treatmentPhotos);

            treatmentPhotos.Invoke(new Action(() => {
                treatmentPhotos.pictureBox1.Image  = Properties.Resources.kisspng_fingerprint_comcast_circle_symbol_technology_tick_5acb37d7297ac2_3455009315232675431699;
                treatmentPhotos.lblStatus.Text     = "Done!";
                treatmentPhotos.btnClose.Enabled   = true;
                treatmentPhotos.btnClose.BackColor = Color.Green;
            }));
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Create and launch analyzing in neuro network
 /// </summary>
 public void NeuroNet()
 {
     netw = new NeuroNetwork(this, yoloWrapper, null);
     netw.StartAnalyzingVideo(lastFrame, coupCount, coupCoord);
 }