LongoMatch.Video.Utils.FramesSeriesCapturer.Start C# (CSharp) Method

Start() public method

public Start ( ) : void
return void
        public void Start()
        {
            Thread thread = new Thread (new ThreadStart (CaptureFrames));
            thread.Start ();
        }

Usage Example

 public FramesCaptureProgressDialog(FramesSeriesCapturer capturer)
 {
     this.Build();
     this.Deletable = false;
     this.capturer = capturer;
     capturer.Progress += Update;
     capturer.Start();
 }
All Usage Examples Of LongoMatch.Video.Utils.FramesSeriesCapturer::Start