diff --git a/VL.MediaPipe.vl b/VL.MediaPipe.vl index e66dad8..6b80e59 100644 --- a/VL.MediaPipe.vl +++ b/VL.MediaPipe.vl @@ -2962,11 +2962,9 @@ - + - - @@ -2983,6 +2981,9 @@ + + + @@ -3009,10 +3010,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3414,8 +3474,8 @@ - + @@ -3462,10 +3522,10 @@ - + @@ -3510,9 +3570,9 @@ - + - + diff --git a/deployment/VL.MediaPipe.nuspec b/deployment/VL.MediaPipe.nuspec index 4a8641f..8efb50a 100644 --- a/deployment/VL.MediaPipe.nuspec +++ b/deployment/VL.MediaPipe.nuspec @@ -2,7 +2,7 @@ VL.MediaPipe - 0.1.1-alpha + 0.1.2-alpha VL.MediaPipe Dom Scott, Torin Blankensmith, vvvv vvvv diff --git a/help/HowTo Use the HandDetector.vl b/help/HowTo Use the HandDetector.vl index a3a8b76..980759a 100644 --- a/help/HowTo Use the HandDetector.vl +++ b/help/HowTo Use the HandDetector.vl @@ -1,5 +1,5 @@  - + @@ -20,7 +20,6 @@ - High @@ -117,7 +116,7 @@ - Low + High @@ -257,14 +256,14 @@ - + - + High - + @@ -332,16 +331,16 @@ - - - - - + + + + + @@ -417,8 +416,8 @@ - + diff --git a/help/HowTo Use the PoseDetector.vl b/help/HowTo Use the PoseDetector.vl new file mode 100644 index 0000000..808ddef --- /dev/null +++ b/help/HowTo Use the PoseDetector.vl @@ -0,0 +1,432 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Toggle + + + + + + + + Bang + + + + + + + + + + + + + High + + + + + + + + + + + + + + + + 9 + Link + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + High + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1, 0, 0, 1 + + + 0, 0, 1, 1 + + + + + + + + + Toggle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/HandResults.cs b/src/HandResults.cs index 5ba5fc4..09b9f7e 100644 --- a/src/HandResults.cs +++ b/src/HandResults.cs @@ -1,6 +1,28 @@ namespace MediaPipe.HandResults { - public enum Fingers { Wrist, Thumb_CMC, Thumb_MCP, Thumb_IP, Thumb_TIP, IndexFinger_MCP, IndexFinger_PIP, IndexFinger_DIP, IndexFinger_TIP, MiddleFinger_MCP, MiddleFinger_PIP, MiddleFinger_DIP, MiddleFinger_TIP, RingFinger_MCP, RingFinger_PIP, RingFinger_DIP, RingFinger_TIP, Pinky_MCP, Pinky_PIP, Pinky_DIP, Pinky_TIP } + public enum FingerJoints { + Wrist, + Thumb_CMC, + Thumb_MCP, + Thumb_IP, + Thumb_TIP, + IndexFinger_MCP, + IndexFinger_PIP, + IndexFinger_DIP, + IndexFinger_TIP, + MiddleFinger_MCP, + MiddleFinger_PIP, + MiddleFinger_DIP, + MiddleFinger_TIP, + RingFinger_MCP, + RingFinger_PIP, + RingFinger_DIP, + RingFinger_TIP, + Pinky_MCP, + Pinky_PIP, + Pinky_DIP, + Pinky_TIP + } public class HandRoot { diff --git a/src/PoseResults.cs b/src/PoseResults.cs index 8f4d0a7..15c32b9 100644 --- a/src/PoseResults.cs +++ b/src/PoseResults.cs @@ -1,5 +1,41 @@ namespace VL.MediaPipe.PoseResults { + public enum PoseJoints { + Nose, + LeftEyeInner, + LeftEye, + LeftEyeOuter, + RightEyeInner, + RightEye, + RightEyeOuter, + LeftEar, + RightEar, + MouthLeft, + MouthRright, + LeftShoulder, + RightShoulder, + LeftElbow, + RightElbow, + LeftWrist, + RightWrist, + LeftPinky, + RightPinky, + LeftIndex, + RightIndex, + LeftThumb, + RightThumb, + LeftHip, + RightHip, + LeftKnee, + RightKnee, + LeftAnkle, + RightAnkle, + LeftHeel, + RightHeel, + LeftFootIndex, + RightFootIndex + } + public class PoseRoot { public Poseresults PoseResults { get; set; }