<?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: EnhanceDepth for intel-sr300 in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353125#M1300</link>
    <description>&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;Yes i checked that. However, i was hoping that the method would be compatible with sr300 as well, since the cameras itself are quite similar to each other and one is merely in an upgrade. Are you certain that the method is not supported for sr300? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion for alternatives to getting normalized/enhanced depth from the sr300 would be very helpful as well!&lt;/P&gt;&lt;P&gt;MartyG&lt;/P&gt;</description>
    <pubDate>Fri, 15 Sep 2017 06:05:17 GMT</pubDate>
    <dc:creator>jkohl1</dc:creator>
    <dc:date>2017-09-15T06:05:17Z</dc:date>
    <item>
      <title>EnhanceDepth for intel-sr300</title>
      <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353123#M1298</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been trying to implement the EnhanceDepth method from intel docs in a c#  application, to get normalized depth image from my sr300 camera.&lt;/P&gt;&lt;P&gt;Currently the stream captured is very dark and the depth is not normalized. From intel docs i found the EnhanceDepth method which can solve this but i'm unable to use this method in the application code. &lt;/P&gt;&lt;P&gt;I am not getting how i am to get depth as PXCMPhoto and then use function, after which i have to return it back to PXCMImage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the c#  application code i am using for viewing the color and depth frame on a button click: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;PXCMSession session = PXCMSession.CreateInstance();&lt;/P&gt;&lt;P&gt;PXCMSession.ImplVersion version = session.QueryVersion();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PXCMSenseManager sm = session.CreateSenseManager();&lt;/P&gt;&lt;P&gt; sm.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, 0, 0);&lt;/P&gt;&lt;P&gt; sm.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_DEPTH, 0, 0);&lt;/P&gt;&lt;P&gt; sm.Init();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; pxcmStatus status = sm.AcquireFrame(true); &lt;/P&gt;&lt;P&gt; PXCMCapture.Sample sample = sm.QuerySample();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PXCMImage image = sample.color;&lt;/P&gt;&lt;P&gt; PXCMImage dimage = sample.depth;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PXCMImage.ImageData data;&lt;/P&gt;&lt;P&gt; image.AcquireAccess( PXCMImage.Access.ACCESS_READ, PXCMImage.PixelFormat.PIXEL_FORMAT_RGB32, out data);&lt;/P&gt;&lt;P&gt; WriteableBitmap wbm = data.ToWritableBitmap(0, image.info.width, image.info.height, 96.0, 96.0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PXCMImage.ImageData data2;&lt;/P&gt;&lt;P&gt; dimage.AcquireAccess(PXCMImage.Access.ACCESS_READ, PXCMImage.PixelFormat.PIXEL_FORMAT_DEPTH_RAW, out data2);&lt;/P&gt;&lt;P&gt; WriteableBitmap wbm2 = data2.ToWritableBitmap(0, dimage.info.width, dimage.info.height, 96.0, 96.0);&lt;/P&gt;&lt;P&gt; image1.Source = wbm;&lt;/P&gt;&lt;P&gt; image2.Source = wbm2;&lt;/P&gt;&lt;P&gt; image.ReleaseAccess(data);&lt;/P&gt;&lt;P&gt; image.ReleaseAccess(data2);&lt;/P&gt;&lt;P&gt; sm.ReleaseFrame();&lt;/P&gt;&lt;P&gt; sm.Close();&lt;/P&gt;&lt;P&gt; session.Dispose();&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;link to method on intel site: &lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/enhancedepth_photoutils_pxcenhancedphoto.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/enhancedepth_photoutils_pxcenhancedphoto.html&lt;/A&gt; EnhanceDepth &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out in using this function. Any references to existing code samples would be appreciated as well!&lt;/P&gt;&lt;P&gt;If the same can be done in python then information on the same would be helpful too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kishankk&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 10:07:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353123#M1298</guid>
      <dc:creator>jkohl1</dc:creator>
      <dc:date>2017-09-14T10:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: EnhanceDepth for intel-sr300</title>
      <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353124#M1299</link>
      <description>&lt;P&gt;If you view this page with the index side-panel visible then it reveals in small print at the top of the page that this is an R200 camera feature, unfortunately.&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?enhancedepth_photoutils_pxcenhancedphoto.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?enhancedepth_photoutils_pxcenhancedphoto.html&lt;/A&gt; Intel® RealSense™ SDK 2016 R2 Documentation &lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2017 12:09:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353124#M1299</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-09-14T12:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: EnhanceDepth for intel-sr300</title>
      <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353125#M1300</link>
      <description>&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;Yes i checked that. However, i was hoping that the method would be compatible with sr300 as well, since the cameras itself are quite similar to each other and one is merely in an upgrade. Are you certain that the method is not supported for sr300? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion for alternatives to getting normalized/enhanced depth from the sr300 would be very helpful as well!&lt;/P&gt;&lt;P&gt;MartyG&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2017 06:05:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353125#M1300</guid>
      <dc:creator>jkohl1</dc:creator>
      <dc:date>2017-09-15T06:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: EnhanceDepth for intel-sr300</title>
      <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353126#M1301</link>
      <description>&lt;P&gt;I believe that EnhanceDepth is part of an R200-only set of functions called Enhanced Photography that were originally designed to be used with rear-facing R200 cameras built into tablet devices.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/en-us/articles/intel-realsense-camera-r200-enhanced-photography-code-sample"&gt;https://software.intel.com/en-us/articles/intel-realsense-camera-r200-enhanced-photography-code-sample&lt;/A&gt; Intel® RealSense™ Camera R200 Enhanced Photography Code Sample | Intel® Software &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I note that you tagged the user Kishankk at the base of your original message, so have probably seen their message about dark scans, which now has replies added to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2017 06:17:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353126#M1301</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-09-15T06:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: EnhanceDepth for intel-sr300</title>
      <link>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353127#M1302</link>
      <description>&lt;P&gt;Thank you for your inputs. &lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2017 03:36:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/EnhanceDepth-for-intel-sr300/m-p/353127#M1302</guid>
      <dc:creator>jkohl1</dc:creator>
      <dc:date>2017-09-18T03:36:59Z</dc:date>
    </item>
  </channel>
</rss>

