Software Archive
Read-only legacy content

Issue with SkeletonPoint

lihui_b_
Beginner
430 Views

My Dear,

When I open the RF_PersonTracking project in the Realsense SDK samples, I was confused by the following codes in the DrawSkeleton function.

   pxcI32 numPoints = personJoints->QueryNumJoints();

    if (!joints) 
    {
        joints = new PXCPersonTrackingData::PersonJoints::SkeletonPoint[personJoints->QueryNumJoints()];
    }
    personJoints->QueryJoints(joints);

 The numPoints's value is always ten,

no matter what the PersonTrackingConfiguration. SkeletonJointsConfiguration.SkeletonMode is AREA_FULL_BODY or AREA_UPER_BODY.

By the way, I get the Exception in my project(using C#)when I use QueryJoints function to assign the skeletonpoint var.

  if (skeletonpoints == null)
      skeletonpoints = new PXCMPersonTrackingData.PersonJoints.SkeletonPoint[] { };
  personjoints.QueryJoints(skeletonpoints);

Could you help me, thx.

0 Kudos
2 Replies
lihui_b_
Beginner
430 Views

anyone can help me?

0 Kudos
Customer__Intel7
Beginner
430 Views

Hi,

I can't promise you anything but I hit the same problem as you did and I wrote up my temporary fix to it in this blog post here;

https://mtaulty.com/2016/05/11/windows-10-wpf-realsense-sr300-person-tracking-continued/

and it essentially came down to having to change the definition of the type SkeletonPoint in the SDK so as to ensure that the .NET marshalling layer knew what to do with the unbounded array declared in there named 'reserved'.

Apologies if my post turns out to be wrong or doesn't fix your problem - just trying to be helpful.

Mike

0 Kudos
Reply