<?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: CreateActiveConfiguration();　 doesn't work. in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478066#M4705</link>
    <description>&lt;P&gt;A RealSense script in the old R2 and R3 SDKs should have this instruction at the very end of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sm.ReleaseFrame();&lt;/P&gt;</description>
    <pubDate>Thu, 08 Mar 2018 11:12:21 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2018-03-08T11:12:21Z</dc:date>
    <item>
      <title>CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478061#M4700</link>
      <description>&lt;P&gt;Hello all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;・camera   :SR-300&lt;/P&gt;&lt;P&gt;・language : C# &lt;/P&gt;&lt;P&gt;・SDK      ：R3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just getting started with my first RealSense project with SR-300 + C#   and I'm trying to make simple program of hand detection.&lt;/P&gt;&lt;P&gt;Everytime I try to get a hand configration parameter by calling  "CreateActiveConfiguration();" ,&lt;/P&gt;&lt;P&gt;however, null is returned as a result. the expected result is the HandConfiguration instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm developing a C#  project and The code is as shown below.&lt;/P&gt;&lt;P&gt;this error occuerd the point of ★★.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        // initialize hand detection&lt;/P&gt;&lt;P&gt;        private void InitializeHandTracking()&lt;/P&gt;&lt;P&gt;        {&lt;/P&gt;&lt;P&gt;            // getting hand detector&lt;/P&gt;&lt;P&gt;            handAnalyzer = senseManager.QueryHand();&lt;/P&gt;&lt;P&gt;            if ( handAnalyzer == null ) {&lt;/P&gt;&lt;P&gt;                throw new Exception( "fail" );&lt;/P&gt;&lt;P&gt;            }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            // creating data of hand&lt;/P&gt;&lt;P&gt;            handData = handAnalyzer.CreateOutput();&lt;/P&gt;&lt;P&gt;            if ( handData == null ) {&lt;/P&gt;&lt;P&gt;                throw new Exception( "fail" );&lt;/P&gt;&lt;P&gt;            }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            // setting a property if the camera is RealSense&lt;/P&gt;&lt;P&gt;            var device = senseManager.QueryCaptureManager().QueryDevice();&lt;/P&gt;&lt;P&gt;            PXCMCapture.DeviceInfo dinfo;&lt;/P&gt;&lt;P&gt;            device.QueryDeviceInfo( out dinfo );&lt;/P&gt;&lt;P&gt;            if ( dinfo.model == PXCMCapture.DeviceModel.DEVICE_MODEL_SR300 ) {&lt;/P&gt;&lt;P&gt;                device.SetDepthConfidenceThreshold( 1 );&lt;/P&gt;&lt;P&gt;                device.SetIVCAMFilterOption( 6 );&lt;/P&gt;&lt;P&gt;            }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            // ★★setting hand detection configrarion★★&lt;/P&gt;&lt;P&gt;            var config = handAnalyzer.CreateActiveConfiguration();&lt;/P&gt;&lt;P&gt;            config.EnableSegmentationImage( true );&lt;/P&gt;&lt;P&gt;            config.ApplyChanges();&lt;/P&gt;&lt;P&gt;            config.Update();&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;        }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;Does anyone have a suggestion what I'm doing wrong?&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 10:07:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478061#M4700</guid>
      <dc:creator>mniiz1</dc:creator>
      <dc:date>2018-03-08T10:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478062#M4701</link>
      <description>&lt;P&gt;In the '2016 R3' SDK, the SDK was split into a range of different modules instead of everything being in a singe SDK package like it was in the previous '2016 R2' SDK.  To get hand tracking functionality in R3, there are two stages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Install the 'Essentials' core module.&lt;/P&gt;&lt;P&gt;2.  Install the optional 'Full Hand Tracking and Gesture Recognition' module from the SDK download page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/en-us/realsense-sdk-windows-eol"&gt;https://software.intel.com/en-us/realsense-sdk-windows-eol&lt;/A&gt; Intel® RealSense™ SDK for Windows (Discontinued) | Intel® Software &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I ask please if you have installed the optional hand tracking module once the Essentials module was installed?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 10:13:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478062#M4701</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-03-08T10:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478063#M4702</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;Yes, I already installed "&lt;A href="https://registrationcenter.intel.com/en/forms/?productid=2801"&gt;https://registrationcenter.intel.com/en/forms/?productid=2801&lt;/A&gt; Full Hand Tracking and Gesture Recognition ", and "'Essentials' core module" .&lt;/P&gt;&lt;P&gt;Do I need other setting??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 10:40:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478063#M4702</guid>
      <dc:creator>mniiz1</dc:creator>
      <dc:date>2018-03-08T10:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478064#M4703</link>
      <description>&lt;P&gt;Based on analysis of other C#  hand tracking scripts, it seems that the problem may be with defining the config variable as a var type of variable.  A more common structure is to define it as a PXCMHandConfiguration type  instead.  For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PXCMHandConfiguration  config = handAnalyzer.CreateActiveConfiguration();&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 10:55:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478064#M4703</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-03-08T10:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478065#M4704</link>
      <description>&lt;P&gt;Thank you for your quick help.&lt;/P&gt;&lt;P&gt;I tried to replace variable type to PXCMHandConfiguration from var.&lt;/P&gt;&lt;P&gt;but no change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any thing can I do?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 11:05:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478065#M4704</guid>
      <dc:creator>mniiz1</dc:creator>
      <dc:date>2018-03-08T11:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478066#M4705</link>
      <description>&lt;P&gt;A RealSense script in the old R2 and R3 SDKs should have this instruction at the very end of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sm.ReleaseFrame();&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 11:12:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478066#M4705</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-03-08T11:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478067#M4706</link>
      <description>&lt;P&gt;Ah, yes I already put "ReleaseFrame()" &lt;/P&gt;&lt;P&gt;but no change&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 11:29:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478067#M4706</guid>
      <dc:creator>mniiz1</dc:creator>
      <dc:date>2018-03-08T11:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: CreateActiveConfiguration();　 doesn't work.</title>
      <link>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478068#M4707</link>
      <description>&lt;P&gt;Hello realsenseUser001,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Thanks for your interest in the Intel® RealSense Technology.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The PXCMHandConfiguration type is from SDK R2 as seen here: &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?doc_hand_initializing_and_configuring.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?doc_hand_initializing_and_configuring.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you are using R3 of the SDK, then you should use HandConfiguration as described here: &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v2016r3/documentation/html/index.html?doc_hand_initializing_and_configuring.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v2016r3/documentation/html/index.html?doc_hand_initializing_and_configuring.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Refer to the hands viewer sample at &lt;A&gt;C:\Program&lt;/A&gt; Files (x86)\Intel\RSSDK\sample\hand\HandsViewer.cs, for more information.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;We hope you find this information helpful. If you need further assistance please do not hesitate to contact us again.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Josh B.&lt;/P&gt;&lt;P&gt;Intel Customer Support&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 18:08:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/CreateActiveConfiguration-doesn-t-work/m-p/478068#M4707</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-03-14T18:08:22Z</dc:date>
    </item>
  </channel>
</rss>

