Accord.Video.AsyncVideoSource.AsyncVideoSource C# (CSharp) Method

AsyncVideoSource() public method

Initializes a new instance of the AsyncVideoSource class.
public AsyncVideoSource ( IVideoSource nestedVideoSource, bool skipFramesIfBusy ) : System
nestedVideoSource IVideoSource Nested video source which is the target for asynchronous processing.
skipFramesIfBusy bool Specifies if the object should skip frames from the nested video source /// in the case if it is still busy processing the previous video frame.
return System
        public AsyncVideoSource(IVideoSource nestedVideoSource, bool skipFramesIfBusy)
        {
            this.nestedVideoSource = nestedVideoSource;
            this.skipFramesIfBusy = skipFramesIfBusy;
        }

Same methods

AsyncVideoSource::AsyncVideoSource ( IVideoSource nestedVideoSource ) : System