<?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 Re: About EnableHand() in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452492#M3416</link>
    <description>&lt;P&gt;Sorry, it was complicated.(I don't program EnableHand())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I program FaceTracking application based on Intel Sample Program.&lt;/P&gt;&lt;P&gt;I will set up FPS by EnableStream() in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i can set unique Settings.&lt;/P&gt;</description>
    <pubDate>Thu, 11 May 2017 11:05:13 GMT</pubDate>
    <dc:creator>松拓也</dc:creator>
    <dc:date>2017-05-11T11:05:13Z</dc:date>
    <item>
      <title>About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452486#M3410</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to know what stream and setting FPS EnableHand() API use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 01:14:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452486#M3410</guid>
      <dc:creator>松拓也</dc:creator>
      <dc:date>2017-05-11T01:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452487#M3411</link>
      <description>&lt;P&gt;I believe the purpose of the EnableHand() instruction is simply to activate the hand module.  You can specify the type of stream that you want to create (color, depth or IR) and then on the following line use EnableHand() to turn the hand module on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FPS speeds available to you will depend on which type of streaming you select and which resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // Instantiate and initialize the SenseManager&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// SET THE STREAM TYPE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;senseManager = PXCMSenseManager.CreateInstance();&lt;/P&gt;&lt;P&gt;senseManager.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, 640, 480, 30);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// MAKE THE ACTIVATION CALL TO ENABLEHAND() TO ACTIVATE THE HAND MODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;senseManager.EnableHand();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;senseManager.Init();&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 06:47:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452487#M3411</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-05-11T06:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452488#M3412</link>
      <description>&lt;P&gt;Thank you for your reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.What stream does EnableHand() use?&lt;/P&gt;&lt;P&gt;2.How much FPS does EnableHand() use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 08:14:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452488#M3412</guid>
      <dc:creator>松拓也</dc:creator>
      <dc:date>2017-05-11T08:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452489#M3413</link>
      <description>&lt;P&gt;I am not a stream programming expert, but I would think that you can use any stream type if all that EnableHand() does is to turn the hand module on but doesn't actually have anything to do with processing the stream (that part being handled by the PXCMCapture instruction, not EnableHand)..&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 09:34:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452489#M3413</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-05-11T09:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452490#M3414</link>
      <description>&lt;P&gt;Thank you for your comment &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make my application based on EnableHand() Settings.&lt;/P&gt;&lt;P&gt;I want to program my unique settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 10:12:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452490#M3414</guid>
      <dc:creator>松拓也</dc:creator>
      <dc:date>2017-05-11T10:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452491#M3415</link>
      <description>&lt;P&gt;As far as I know, EnableHand() does not have settings that you can change, as it is just for turning the hand module on.  I wonder if what you are really asking is "how can I program unique settings for the hand module?"  &lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 10:40:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452491#M3415</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-05-11T10:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452492#M3416</link>
      <description>&lt;P&gt;Sorry, it was complicated.(I don't program EnableHand())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I program FaceTracking application based on Intel Sample Program.&lt;/P&gt;&lt;P&gt;I will set up FPS by EnableStream() in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i can set unique Settings.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 11:05:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452492#M3416</guid>
      <dc:creator>松拓也</dc:creator>
      <dc:date>2017-05-11T11:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452493#M3417</link>
      <description>&lt;P&gt;Thanks, I will link stream expert jb455  to this discussion to see if he can help with your question.  I just wanted to understand clearly what you needed so that you can be helped correctly.  Thanks for your patience and good luck!  &lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 11:12:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452493#M3417</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-05-11T11:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: About EnableHand()</title>
      <link>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452494#M3418</link>
      <description>&lt;P&gt;Hi MartyG!&lt;/P&gt;&lt;P&gt;Thank you as always! &lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 02:40:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/About-EnableHand/m-p/452494#M3418</guid>
      <dc:creator>松拓也</dc:creator>
      <dc:date>2017-05-15T02:40:38Z</dc:date>
    </item>
  </channel>
</rss>

