<?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 For motion gestures like  in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024146#M39418</link>
    <description>&lt;P&gt;For motion gestures like "swipe" you will get both the START and END events immediately one after the other, so you can safely ignore one of them.&lt;/P&gt;

&lt;P&gt;For poses like the "thumb up" (which, btw, is significantly improved) you will get the START event when the gesture is first detected (can be immediate) and the END event when the gesture is no longer detected.&lt;/P&gt;

&lt;P&gt;If you choose to enable the continuous gesture events you will get the IN_PROGRESS event for every frame where the gesture can be seen&lt;/P&gt;</description>
    <pubDate>Tue, 04 Nov 2014 13:22:43 GMT</pubDate>
    <dc:creator>Dagan_E_Intel</dc:creator>
    <dc:date>2014-11-04T13:22:43Z</dc:date>
    <item>
      <title>Simple swipe left/right</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024140#M39412</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;

&lt;P&gt;I was reading the docs and found this:&lt;/P&gt;

&lt;P&gt;"&lt;SPAN class="f_Body"&gt;Working with multiple gesture packs is a reserved feature. The SDK currently works with the default gesture pack only.&lt;/SPAN&gt;"&lt;/P&gt;

&lt;P&gt;So it's not possible to detect a simple swipe left/right/up/down for now? C# SDK.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;André&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2014 04:19:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024140#M39412</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2014-10-14T04:19:40Z</dc:date>
    </item>
    <item>
      <title>The beta SDK supports a left</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024141#M39413</link>
      <description>&lt;P&gt;The beta SDK supports a left hand and a right hand swipe gesture.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2014 04:21:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024141#M39413</guid>
      <dc:creator>Colleen_C_Intel</dc:creator>
      <dc:date>2014-10-14T04:21:38Z</dc:date>
    </item>
    <item>
      <title>I managed to print all</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024142#M39414</link>
      <description>&lt;P&gt;I managed to print all available gestures with this:&lt;/P&gt;

&lt;PRE class="brush:csharp;"&gt;int numGestures = handConfig.QueryGesturesTotalNumber();
for (int i = 0; i &amp;lt; numGestures; i++) {
	string name;
	handConfig.QueryGestureNameByIndex(i, out name);
	Debug.WriteLine("Gestures: " + name);
}&lt;/PRE&gt;

&lt;P&gt;And I got this:&lt;/P&gt;

&lt;P&gt;Gestures: fist&lt;BR /&gt;
	Gestures: full_pinch&lt;BR /&gt;
	Gestures: spreadfingers&lt;BR /&gt;
	Gestures: swipe&lt;BR /&gt;
	Gestures: tap&lt;BR /&gt;
	Gestures: thumb_down&lt;BR /&gt;
	Gestures: thumb_up&lt;BR /&gt;
	Gestures: two_fingers_pinch_open&lt;BR /&gt;
	Gestures: v_sign&lt;BR /&gt;
	Gestures: wave&lt;/P&gt;

&lt;P&gt;How can I know if it's a &lt;SPAN style="line-height: 19.5120010375977px;"&gt;left or right&amp;nbsp;&lt;/SPAN&gt;swipe?&lt;/P&gt;

&lt;P&gt;Also, it's seems that the camera is not doing a good job detecting the gestures, the Perceptual one has more accuracy to me (even using the demo provided by the sdk).&amp;nbsp;&lt;SPAN style="line-height: 19.5120010375977px;"&gt;thumb_down is impossible to get for instance.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Do you thing it could be a problem with my hardware?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2014 19:57:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024142#M39414</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2014-10-14T19:57:22Z</dc:date>
    </item>
    <item>
      <title>The right hand swipe goes</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024143#M39415</link>
      <description>&lt;P&gt;The right hand swipe goes towards the left hand.&lt;BR /&gt;
	The left hand swipe goes towards the right hand.&lt;BR /&gt;
	Both are one way only and should be done with the wrist staying still and just fingers moving for the most part.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2014 22:15:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024143#M39415</guid>
      <dc:creator>Colleen_C_Intel</dc:creator>
      <dc:date>2014-10-14T22:15:47Z</dc:date>
    </item>
    <item>
      <title>Thanks Colleen, I got it now.</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024144#M39416</link>
      <description>&lt;P&gt;Thanks Colleen, I got it now.&lt;/P&gt;

&lt;P&gt;And I have to use the handId to know which hand did the move.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I guess it changed a bit from the Perceptual SDK :)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Another issue: the OnFiredGesture returns the GestureData, and the docs say that the state property is a&amp;nbsp;&lt;SPAN class="f_CodeExample"&gt;GestureStateType.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="f_CodeExample"&gt;The&amp;nbsp;GestureStateType is as it follows:&lt;/SPAN&gt;&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;GESTURE_STATE_START -&amp;nbsp;&amp;nbsp;The gesture tracking is started.&lt;/LI&gt;
	&lt;LI&gt;&amp;nbsp;GESTURE_STATE_IN_PROGRESS -&amp;nbsp;&amp;nbsp;The gesture tracking is in progress.&lt;/LI&gt;
	&lt;LI&gt;&amp;nbsp;GESTURE_STATE_END -&amp;nbsp;&amp;nbsp;The gesture tracking completes.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;The value of the this property is always&amp;nbsp;GESTURE_STATE_START for any detected gesture, is that supposed to be like this?&lt;/P&gt;

&lt;P&gt;If this event is only fired at the end of the gestures, wouldn't be better to always return&amp;nbsp;GESTURE_STATE_END?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Oct 2014 23:34:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024144#M39416</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2014-10-14T23:34:52Z</dc:date>
    </item>
    <item>
      <title>It is a known bug and will be</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024145#M39417</link>
      <description>&lt;P&gt;It is a known bug and will be fixed in future release. Thanks!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Andre Carlucci wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Thanks Colleen, I got it now.&lt;/P&gt;

&lt;P&gt;And I have to use the handId to know which hand did the move.&amp;nbsp;I guess it changed a bit from the Perceptual SDK :)&lt;/P&gt;

&lt;P&gt;Another issue: the OnFiredGesture returns the GestureData, and the docs say that the state property is a&amp;nbsp;GestureStateType.&lt;/P&gt;

&lt;P&gt;The&amp;nbsp;GestureStateType is as it follows:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&amp;nbsp;GESTURE_STATE_START -&amp;nbsp;&amp;nbsp;The gesture tracking is started.&lt;/LI&gt;
	&lt;LI&gt;&amp;nbsp;GESTURE_STATE_IN_PROGRESS -&amp;nbsp;&amp;nbsp;The gesture tracking is in progress.&lt;/LI&gt;
	&lt;LI&gt;&amp;nbsp;GESTURE_STATE_END -&amp;nbsp;&amp;nbsp;The gesture tracking completes.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;The value of the this property is always&amp;nbsp;GESTURE_STATE_START for any detected gesture, is that supposed to be like this?&lt;/P&gt;

&lt;P&gt;If this event is only fired at the end of the gestures, wouldn't be better to always return&amp;nbsp;GESTURE_STATE_END?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2014 00:06:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024145#M39417</guid>
      <dc:creator>Xusheng_L_Intel</dc:creator>
      <dc:date>2014-10-15T00:06:24Z</dc:date>
    </item>
    <item>
      <title>For motion gestures like</title>
      <link>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024146#M39418</link>
      <description>&lt;P&gt;For motion gestures like "swipe" you will get both the START and END events immediately one after the other, so you can safely ignore one of them.&lt;/P&gt;

&lt;P&gt;For poses like the "thumb up" (which, btw, is significantly improved) you will get the START event when the gesture is first detected (can be immediate) and the END event when the gesture is no longer detected.&lt;/P&gt;

&lt;P&gt;If you choose to enable the continuous gesture events you will get the IN_PROGRESS event for every frame where the gesture can be seen&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2014 13:22:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Simple-swipe-left-right/m-p/1024146#M39418</guid>
      <dc:creator>Dagan_E_Intel</dc:creator>
      <dc:date>2014-11-04T13:22:43Z</dc:date>
    </item>
  </channel>
</rss>

