AForge.Robotics.TeRK.Qwerk.Video.Start C# (CSharp) Method

Start() public method

Start video source.
Starts video source and return execution to caller. Video source object creates background thread and notifies about new frames with the help of NewFrame event.
public Start ( ) : void
return void
            public void Start( )
            {
                if ( thread == null )
                {
                    framesReceived = 0;
                    bytesReceived  = 0;

                    // create events
                    stopEvent = new ManualResetEvent( false );

                    // create and start new thread
                    thread = new Thread( new ThreadStart( WorkerThread ) );
                    thread.Name = source; // mainly for debugging
                    thread.Start( );
                }
            }