<?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: Using SURF in RealSense D435 Video C++ in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581535#M10823</link>
    <description>&lt;P&gt;I only know of one Librealsense-specific example of SURF, using the older 'legacy' Librealsense that came before SDK 2.0.  ~In that example, the user was trying to find the depth of a pixel in the RGB image.  In the end, the approach they took was to investigate the keypoints of the SURF algorithms and then look at the corresponding depth of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/issues/1459"&gt;https://github.com/IntelRealSense/librealsense/issues/1459&lt;/A&gt; Depth value of given pixel in RGB image · Issue # 1459 · IntelRealSense/librealsense · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Legacy RealSense is not compatible with the 400 Series cameras, so you would have to find a way to convert the principles to SDK 2.0 (Librealsense2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was also a case relating to using OpenCV with SURF where scripting was posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://answers.opencv.org/question/139036/register-ir-image-to-distorted-rgb/"&gt;http://answers.opencv.org/question/139036/register-ir-image-to-distorted-rgb/&lt;/A&gt; register ir image to distorted rgb - OpenCV Q&amp;amp;A Forum&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that article, they suggest that legacy Librealsense could be used to register depth / IR to RGB with the instruction &lt;B&gt; rs_project_point_to_pixel.  &lt;/B&gt;Librealsense2 has its own version of this called  &lt;B&gt;rs2_project_point_to_pixel &lt;/B&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Aug 2018 08:37:23 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2018-08-07T08:37:23Z</dc:date>
    <item>
      <title>Using SURF in RealSense D435 Video C++</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581534#M10822</link>
      <description>&lt;P&gt;Hi, I'm fairly new to opencv and i started it with RealSense D435.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've done several sub-project for final one;&lt;/P&gt;&lt;P&gt;1. Detecting target on Image using SURF&lt;/P&gt;&lt;P&gt;2. Getting Depth Mat on Video&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using them, the final one would detect target on RGB Video and find depth of it.&lt;/P&gt;&lt;P&gt;I thought it would be easy, but.. stuck at using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matcher.match(descriptors_1, descriptors_2, matches);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i compile with that one (which is so important part of SURF) there comes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any expected problem for SURF in Video?&lt;/P&gt;&lt;P&gt;Here is the code&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/hydthemoon/question/blob/master/assertion_error.cpp"&gt;https://github.com/hydthemoon/question/blob/master/assertion_error.cpp&lt;/A&gt; question/assertion_error.cpp at master · hydthemoon/question · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd appreciate for any useful links and advice!&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:08:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581534#M10822</guid>
      <dc:creator>jkim86</dc:creator>
      <dc:date>2018-08-07T08:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using SURF in RealSense D435 Video C++</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581535#M10823</link>
      <description>&lt;P&gt;I only know of one Librealsense-specific example of SURF, using the older 'legacy' Librealsense that came before SDK 2.0.  ~In that example, the user was trying to find the depth of a pixel in the RGB image.  In the end, the approach they took was to investigate the keypoints of the SURF algorithms and then look at the corresponding depth of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/issues/1459"&gt;https://github.com/IntelRealSense/librealsense/issues/1459&lt;/A&gt; Depth value of given pixel in RGB image · Issue # 1459 · IntelRealSense/librealsense · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Legacy RealSense is not compatible with the 400 Series cameras, so you would have to find a way to convert the principles to SDK 2.0 (Librealsense2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was also a case relating to using OpenCV with SURF where scripting was posted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://answers.opencv.org/question/139036/register-ir-image-to-distorted-rgb/"&gt;http://answers.opencv.org/question/139036/register-ir-image-to-distorted-rgb/&lt;/A&gt; register ir image to distorted rgb - OpenCV Q&amp;amp;A Forum&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that article, they suggest that legacy Librealsense could be used to register depth / IR to RGB with the instruction &lt;B&gt; rs_project_point_to_pixel.  &lt;/B&gt;Librealsense2 has its own version of this called  &lt;B&gt;rs2_project_point_to_pixel &lt;/B&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 08:37:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581535#M10823</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-08-07T08:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using SURF in RealSense D435 Video C++</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581536#M10824</link>
      <description>&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;Guess i should bought R200 to apply your first example ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And actually second one deals with 'Image' but the problem is on 'Video' so..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I should concentrate on that Runtime Error (guess i need to check DLLs ?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Aug 2018 09:03:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581536#M10824</guid>
      <dc:creator>jkim86</dc:creator>
      <dc:date>2018-08-07T09:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Using SURF in RealSense D435 Video C++</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581537#M10825</link>
      <description>&lt;P&gt;Hi HydtheMoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to resolve your issue, or did you need further assistance. Please let us know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Intel Customer Support &lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 16:51:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Using-SURF-in-RealSense-D435-Video-C/m-p/581537#M10825</guid>
      <dc:creator>Sahira_Intel</dc:creator>
      <dc:date>2018-08-14T16:51:54Z</dc:date>
    </item>
  </channel>
</rss>

