<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Skeleton Tracking Not Working in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108445#M71211</link>
    <description>&lt;P&gt;Hi, I would like to do skeleton tracking but the number of joints returned is always 0.&lt;/P&gt;

&lt;P&gt;My goal is to track the body skeleton from 4 meter and I would like to track when a person raise his hand.&lt;/P&gt;

&lt;P&gt;Below is my code, did I do anything wrong? Thanks!&lt;/P&gt;

&lt;PRE class="brush:csharp;"&gt;//Initialization
                // Create the SenseManager instance  
                sm = PXCMSenseManager.CreateInstance();

                // Enable the color stream
                sm.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, ImageWidth, ImageHeight, 30);

                // Enable person tracking
                sm.EnablePersonTracking();
                personModule = sm.QueryPersonTracking();
                PXCMPersonTrackingConfiguration personConfig = personModule.QueryConfiguration();
                personConfig.SetTrackedAngles(PXCMPersonTrackingConfiguration.TrackingAngles.TRACKING_ANGLES_FRONTAL);

                // Skeleton
                PXCMPersonTrackingConfiguration.SkeletonJointsConfiguration skeletonConfig = personConfig.QuerySkeletonJoints();
                skeletonConfig.SetMaxTrackedPersons(1);
                skeletonConfig.SetTrackingArea(PXCMPersonTrackingConfiguration.SkeletonJointsConfiguration.SkeletonMode.AREA_UPPER_BODY_ROUGH);
                skeletonConfig.Enable();


//Update
PXCMPersonTrackingData.PersonJoints personJoint = trackedPerson.QuerySkeletonJoints();
                    int njoints = personJoint.QueryNumJoints();
                    myTrackedPerson.JointsDetected = njoints;
                    PXCMPersonTrackingData.PersonJoints.SkeletonPoint[] joints = new PXCMPersonTrackingData.PersonJoints.SkeletonPoint[njoints];
                    if (njoints &amp;gt; 0)
                    {
                        if (personJoint.QueryJoints(joints))
                        {
                            for (int i = 0; i &amp;lt; njoints; i++)
                            {
                                if (joints&lt;I&gt;.confidenceImage &amp;gt; 80)
                                {
                                    if (joints&lt;I&gt;.jointType == PXCMPersonTrackingData.PersonJoints.JointType.JOINT_HEAD)
                                    {
                                        myTrackedPerson.HeadX = (int)joints&lt;I&gt;.image.x;
                                        myTrackedPerson.HeadY = (int)joints&lt;I&gt;.image.y;
                                    }
                                }

                            }
                        }
                    }&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 25 Jun 2016 10:03:47 GMT</pubDate>
    <dc:creator>Wik_P_</dc:creator>
    <dc:date>2016-06-25T10:03:47Z</dc:date>
    <item>
      <title>Skeleton Tracking Not Working</title>
      <link>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108445#M71211</link>
      <description>&lt;P&gt;Hi, I would like to do skeleton tracking but the number of joints returned is always 0.&lt;/P&gt;

&lt;P&gt;My goal is to track the body skeleton from 4 meter and I would like to track when a person raise his hand.&lt;/P&gt;

&lt;P&gt;Below is my code, did I do anything wrong? Thanks!&lt;/P&gt;

&lt;PRE class="brush:csharp;"&gt;//Initialization
                // Create the SenseManager instance  
                sm = PXCMSenseManager.CreateInstance();

                // Enable the color stream
                sm.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, ImageWidth, ImageHeight, 30);

                // Enable person tracking
                sm.EnablePersonTracking();
                personModule = sm.QueryPersonTracking();
                PXCMPersonTrackingConfiguration personConfig = personModule.QueryConfiguration();
                personConfig.SetTrackedAngles(PXCMPersonTrackingConfiguration.TrackingAngles.TRACKING_ANGLES_FRONTAL);

                // Skeleton
                PXCMPersonTrackingConfiguration.SkeletonJointsConfiguration skeletonConfig = personConfig.QuerySkeletonJoints();
                skeletonConfig.SetMaxTrackedPersons(1);
                skeletonConfig.SetTrackingArea(PXCMPersonTrackingConfiguration.SkeletonJointsConfiguration.SkeletonMode.AREA_UPPER_BODY_ROUGH);
                skeletonConfig.Enable();


//Update
PXCMPersonTrackingData.PersonJoints personJoint = trackedPerson.QuerySkeletonJoints();
                    int njoints = personJoint.QueryNumJoints();
                    myTrackedPerson.JointsDetected = njoints;
                    PXCMPersonTrackingData.PersonJoints.SkeletonPoint[] joints = new PXCMPersonTrackingData.PersonJoints.SkeletonPoint[njoints];
                    if (njoints &amp;gt; 0)
                    {
                        if (personJoint.QueryJoints(joints))
                        {
                            for (int i = 0; i &amp;lt; njoints; i++)
                            {
                                if (joints&lt;I&gt;.confidenceImage &amp;gt; 80)
                                {
                                    if (joints&lt;I&gt;.jointType == PXCMPersonTrackingData.PersonJoints.JointType.JOINT_HEAD)
                                    {
                                        myTrackedPerson.HeadX = (int)joints&lt;I&gt;.image.x;
                                        myTrackedPerson.HeadY = (int)joints&lt;I&gt;.image.y;
                                    }
                                }

                            }
                        }
                    }&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2016 10:03:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108445#M71211</guid>
      <dc:creator>Wik_P_</dc:creator>
      <dc:date>2016-06-25T10:03:47Z</dc:date>
    </item>
    <item>
      <title>Hi Johannes:</title>
      <link>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108446#M71212</link>
      <description>&lt;P&gt;Hi Johannes:&lt;/P&gt;

&lt;P&gt;I am using R200 and I am running on Windows 10.&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Wik&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 10:26:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108446#M71212</guid>
      <dc:creator>Wik_P_</dc:creator>
      <dc:date>2016-06-27T10:26:02Z</dc:date>
    </item>
    <item>
      <title>Hi, is there anyone from</title>
      <link>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108447#M71213</link>
      <description>&lt;P&gt;Hi, is there anyone from Intel to help to review the issue? I would like to know if this feature is not matured yet or my code has some problem. Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 01:48:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108447#M71213</guid>
      <dc:creator>Wik_P_</dc:creator>
      <dc:date>2016-06-30T01:48:44Z</dc:date>
    </item>
    <item>
      <title>Hi Wik,</title>
      <link>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108448#M71214</link>
      <description>&lt;P&gt;Hi Wik,&lt;BR /&gt;
	&lt;BR /&gt;
	I also want to detect some joints of a person. But the java library&amp;nbsp;&lt;STRONG&gt;libpxcclr.java&amp;nbsp;&lt;/STRONG&gt;they provided doesn't have any member function&amp;nbsp;&lt;SPAN class="typ" style="color: rgb(8, 146, 208); font-family: &amp;quot;Courier New&amp;quot;; font-size: 13.3333px; line-height: normal; white-space: pre;"&gt;EnablePersonTracking()&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;for&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="typ" style="color: rgb(8, 146, 208); font-family: &amp;quot;Courier New&amp;quot;; font-size: 13.3333px; line-height: normal; white-space: pre;"&gt;PXCMSenseManager&lt;/SPAN&gt;&lt;SPAN class="typ" style="font-family: &amp;quot;Courier New&amp;quot;; font-size: 13.3333px; line-height: normal; white-space: pre;"&gt;&lt;FONT color="#000000"&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;class.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;
	Can you please provide your library file to me?&lt;BR /&gt;
	&lt;BR /&gt;
	Thanks,&lt;/P&gt;

&lt;P&gt;-MohanG&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 15:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Skeleton-Tracking-Not-Working/m-p/1108448#M71214</guid>
      <dc:creator>mohan_g_1</dc:creator>
      <dc:date>2016-08-06T15:19:00Z</dc:date>
    </item>
  </channel>
</rss>

