NewTOAPIA.DirectShow.VideoCaptureDevice.VideoCaptureDevice C# (CSharp) Method

VideoCaptureDevice() public method

public VideoCaptureDevice ( DsDevice device, int width, int height ) : System
device NewTOAPIA.DirectShow.Core.DsDevice
width int
height int
return System
        public VideoCaptureDevice(DsDevice device, int width, int height)
            :this()
		{
            fDesiredWidth = width;
            fDesiredHeight = height;
            fDevice = device;

            fsourceBaseFilter = fDevice.BaseFilter;

            source = device.DevicePath;
            SetupGraph();


            // At this point, the graph has been setup and
            // we're just waiting for the Start() method to be called.
        }

Same methods

VideoCaptureDevice::VideoCaptureDevice ( ) : System