-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switching to version 0.9.4 of Body Tracking SDK. New joints for hands…
…, confidence level for joints, CPU only mode (very slow!)
- Loading branch information
Showing
19 changed files
with
281 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
namespace K4AdotNet.BodyTracking | ||
{ | ||
// Defined in k4abttypes.h: | ||
// typedef enum | ||
// { | ||
// K4ABT_JOINT_CONFIDENCE_NONE = 0, | ||
// K4ABT_JOINT_CONFIDENCE_LOW = 1, | ||
// K4ABT_JOINT_CONFIDENCE_MEDIUM = 2, | ||
// K4ABT_JOINT_CONFIDENCE_HIGH = 3, | ||
// K4ABT_JOINT_CONFIDENCE_LEVELS_COUNT = 4, | ||
// } k4abt_joint_confidence_level_t; | ||
// | ||
/// <summary>This enumeration specifies the joint confidence level.</summary> | ||
public enum JointConfidenceLevel | ||
{ | ||
/// <summary>The joint is out of range (too far from depth camera).</summary> | ||
None = 0, | ||
|
||
/// <summary>The joint is not observed (likely due to occlusion), predicted joint pose.</summary> | ||
Low = 1, | ||
|
||
/// <summary>Medium confidence in joint pose. Current SDK will only provide joints up to this confidence level.</summary> | ||
Medium = 2, | ||
|
||
/// <summary>High confidence in joint pose. Placeholder for future SDK.</summary> | ||
High = 3, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.