Property | Type | Description | |
---|---|---|---|
HandleDataReceived | void |
Method | Description | |
---|---|---|
KinectDepthCamera ( int deviceID ) : System |
Initializes a new instance of the KinectDepthCamera class.
|
|
KinectDepthCamera ( int deviceID, CameraResolution resolution ) : System |
Initializes a new instance of the KinectDepthCamera class.
|
|
KinectDepthCamera ( int deviceID, CameraResolution resolution, bool provideOriginalDepthImage ) : System |
Initializes a new instance of the KinectDepthCamera class.
|
|
SignalToStop ( ) : void |
Signal video source to stop its work. |
|
Start ( ) : void |
Start video source. Starts video source and returns execution to caller. Video camera will be started and will provide new video frames through the NewFrame event. |
|
Stop ( ) : void |
Stop video source. The method stop the video source, so it no longer provides new video frames and does not consume any resources. |
|
WaitForStop ( ) : void |
Wait for video source has stopped. |
Method | Description | |
---|---|---|
HandleDataReceived ( |
public KinectDepthCamera ( int deviceID ) : System | ||
deviceID | int | Kinect's device ID (index) to connect to. |
return | System |
public KinectDepthCamera ( int deviceID, CameraResolution resolution ) : System | ||
deviceID | int | Kinect's device ID (index) to connect to. |
resolution | CameraResolution | Resolution of depth sensor to set. |
return | System |
public KinectDepthCamera ( int deviceID, CameraResolution resolution, bool provideOriginalDepthImage ) : System | ||
deviceID | int | Kinect's device ID (index) to connect to. |
resolution | CameraResolution | Resolution of depth sensor to set. |
provideOriginalDepthImage | bool | Provide original depth image or colored depth map
/// (see |
return | System |