Accord.Controls.Vision.HeadController.Start C# (CSharp) Method

Start() public method

Starts processing the video source.
public Start ( ) : void
return void
        public void Start()
        {
            if (videoSource == null) return;

            requestedToStop = false;
            skip = 0;

            IsTracking = false;
            IsDetecting = true;

            videoSource.Start();
        }