<?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: Does anybody know how can I retrieve depth or distance from the Intel RealSense D435? in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620934#M13414</link>
    <description>&lt;P&gt;Hi Marty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add to what you already mentioned, I think following might as well work.&lt;/P&gt;&lt;P&gt;For any Pixel in depth Image, we can gets  x,y, z co-ordinates for that pixel using function rs2_deproject_pixel_to_point&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/5e73f7bb906a3cbec8ae43e888f182cc56c18692/include/librealsense2/rsutil.h#"&gt;https://github.com/IntelRealSense/librealsense/blob/5e73f7bb906a3cbec8ae43e888f182cc56c18692/include/librealsense2/rsutil.h#&lt;/A&gt; L46 librealsense/rsutil.h at 5e73f7bb906a3cbec8ae43e888f182cc56c18692 · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3-D co-ordinate which above function returns is a physical point in space w.r.t. camera co-ordinate system. Z value is the actual Depth value. By using x &amp;amp; y values along with Z, one can know the actual distance of that particular point from camera.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Mar 2018 17:22:10 GMT</pubDate>
    <dc:creator>PSnip</dc:creator>
    <dc:date>2018-03-21T17:22:10Z</dc:date>
    <item>
      <title>Does anybody know how can I retrieve depth or distance from the Intel RealSense D435?</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620932#M13412</link>
      <description>&lt;P&gt;Hi, does anybody know what algorithm is used to retrieve the distance measured from the depth sensor in the Intel RealSense D435? I wish to utilise the depth data, specifically the distance obtained to proceed with my current project. I mean, is there any specific built-in function to get the distance of a specific object or human?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any reference source code in C#  that applies to my question? Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 04:31:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620932#M13412</guid>
      <dc:creator>SWong19</dc:creator>
      <dc:date>2018-03-21T04:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Does anybody know how can I retrieve depth or distance from the Intel RealSense D435?</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620933#M13413</link>
      <description>&lt;P&gt;In the 400 Series cameras, the depth pixel value is a measurement from the parallel plane of the imagers and not the absolute range &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The documentation for the .NET wrapper in SDK 2.0 has a very simple sample 'Hello World' C#  script for detecting the depth of an object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp"&gt;https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp&lt;/A&gt; librealsense/wrappers/csharp at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SDK also has a more complex sample program called 'Measure'.  This one is written in C++, though the explanations of the code will help to give a deeper understanding of how SDK 2.0 handles depth calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/examples/measure"&gt;https://github.com/IntelRealSense/librealsense/tree/master/examples/measure&lt;/A&gt; librealsense/examples/measure at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 08:04:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620933#M13413</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-03-21T08:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Does anybody know how can I retrieve depth or distance from the Intel RealSense D435?</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620934#M13414</link>
      <description>&lt;P&gt;Hi Marty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add to what you already mentioned, I think following might as well work.&lt;/P&gt;&lt;P&gt;For any Pixel in depth Image, we can gets  x,y, z co-ordinates for that pixel using function rs2_deproject_pixel_to_point&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/5e73f7bb906a3cbec8ae43e888f182cc56c18692/include/librealsense2/rsutil.h#"&gt;https://github.com/IntelRealSense/librealsense/blob/5e73f7bb906a3cbec8ae43e888f182cc56c18692/include/librealsense2/rsutil.h#&lt;/A&gt; L46 librealsense/rsutil.h at 5e73f7bb906a3cbec8ae43e888f182cc56c18692 · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3-D co-ordinate which above function returns is a physical point in space w.r.t. camera co-ordinate system. Z value is the actual Depth value. By using x &amp;amp; y values along with Z, one can know the actual distance of that particular point from camera.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2018 17:22:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620934#M13414</guid>
      <dc:creator>PSnip</dc:creator>
      <dc:date>2018-03-21T17:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Does anybody know how can I retrieve depth or distance from the Intel RealSense D435?</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620935#M13415</link>
      <description>&lt;P&gt;does that mean this is one of the ways for me to retrieve the depth data? thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 01:49:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620935#M13415</guid>
      <dc:creator>SWong19</dc:creator>
      <dc:date>2018-03-22T01:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Does anybody know how can I retrieve depth or distance from the Intel RealSense D435?</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620936#M13416</link>
      <description>&lt;P&gt;Hello StevenWong1995,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;We were wondering if the recommendations provided by Marty G and  thePaintedSnipe were the solution that you were looking for.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Please, let us know if further assistance is required or if we can close this case.&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;Best regards.&lt;P&gt;&amp;nbsp;&lt;/P&gt;   &lt;P&gt;&amp;nbsp;&lt;/P&gt;Josh B.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Intel Customer Support&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 19:00:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Does-anybody-know-how-can-I-retrieve-depth-or-distance-from-the/m-p/620936#M13416</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-03-27T19:00:51Z</dc:date>
    </item>
  </channel>
</rss>

