<?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 Building examples (capture) realsense D435 in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618578#M13358</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am experiencing problems when trying to build from source the examples provided by intel ( &lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/examples"&gt;https://github.com/IntelRealSense/librealsense/tree/master/examples&lt;/A&gt; librealsense/examples at master · IntelRealSense/librealsense · GitHub  ) . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Information about my pc/ setup :&lt;/P&gt;&lt;P&gt;OS : Ubuntu 16.04 LTS&lt;/P&gt;&lt;P&gt;Kernel: 4.15.0-33-generic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;History : &lt;/P&gt;&lt;P&gt;First, I installed the realsense sdk following the instructions provided here &lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md&lt;/A&gt; librealsense/distribution_linux.md at master · IntelRealSense/librealsense · GitHub   and here &lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md&lt;/A&gt; librealsense/&lt;A href="http://installation.md"&gt;installation.md&lt;/A&gt; at master · IntelRealSense/librealsense · GitHub  , and have been able to run realsense-viewer without any issues.&lt;/P&gt;&lt;P&gt;Then, I tried building the capture example. To do this I created a build directory inside examples/capture and run  :&lt;/P&gt;&lt;P&gt;     cmake ..  -DBUILD_GRAPHICAL_EXAMPLES=true , from examples/capture/build&lt;/P&gt;&lt;P&gt;with the following output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- The C compiler identification is GNU 5.4.0&lt;/P&gt;&lt;P&gt;-- The CXX compiler identification is GNU 5.4.0&lt;/P&gt;&lt;P&gt;-- Check for working C compiler: /usr/bin/cc&lt;/P&gt;&lt;P&gt;-- Check for working C compiler: /usr/bin/cc -- works&lt;/P&gt;&lt;P&gt;-- Detecting C compiler ABI info&lt;/P&gt;&lt;P&gt;-- Detecting C compiler ABI info - done&lt;/P&gt;&lt;P&gt;-- Detecting C compile features&lt;/P&gt;&lt;P&gt;-- Detecting C compile features - done&lt;/P&gt;&lt;P&gt;-- Check for working CXX compiler: /usr/bin/c++&lt;/P&gt;&lt;P&gt;-- Check for working CXX compiler: /usr/bin/c++ -- works&lt;/P&gt;&lt;P&gt;-- Detecting CXX compiler ABI info&lt;/P&gt;&lt;P&gt;-- Detecting CXX compiler ABI info - done&lt;/P&gt;&lt;P&gt;-- Detecting CXX compile features&lt;/P&gt;&lt;P&gt;-- Detecting CXX compile features - done&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX11&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX11 - Success&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX0X&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX0X - Success&lt;/P&gt;&lt;P&gt;-- Configuring done&lt;/P&gt;&lt;P&gt;-- Generating done&lt;/P&gt;&lt;P&gt;-- Build files have been written to: /home/awdw/realsense_install/librealsense/examples/capture/build&lt;/P&gt;&lt;P&gt;Then I run :&lt;/P&gt;&lt;P&gt;make&lt;/P&gt;&lt;P&gt;with the following output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scanning dependencies of target rs-capture&lt;/P&gt;&lt;P&gt;[ 50%] Building CXX object CMakeFiles/rs-capture.dir/rs-capture.cpp.o&lt;/P&gt;&lt;P&gt;In file included from /home/awdw/realsense_install/librealsense/examples/capture/rs-capture.cpp:5:0:&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp: In member function 'rect texture::calc_grid(float2, int)':&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'w' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;         return rect{ w, h, new_w, new_h}; //column count, line count, cell width cell height&lt;/P&gt;&lt;P&gt;                                        ^&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'h' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'new_w' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'new_h' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;[100%] Linking CXX executable rs-capture&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `draw_pointcloud(float, float, glfw_state&amp;amp;, rs2::points&amp;amp;)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x647): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x651): undefined reference to `glPushAttrib'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x676): undefined reference to `glClearColor'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x680): undefined reference to `glClear'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x68a): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x68f): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6d1): undefined reference to `gluPerspective'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6db): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6e0): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x71f): undefined reference to `gluLookAt'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x754): undefined reference to `glTranslatef'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x77a): undefined reference to `glRotated'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x79f): undefined reference to `glRotated'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7b4): undefined reference to `glTranslatef'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7ca): undefined reference to `glPointSize'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7d4): undefined reference to `glEnable'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7de): undefined reference to `glEnable'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7fa): undefined reference to `glBindTexture'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x844): undefined reference to `glTexParameterfv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x858): undefined reference to `glTexParameteri'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x86c): undefined reference to `glTexParameteri'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x876): undefined reference to `glBegin'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x91e): undefined reference to `glVertex3fv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x942): undefined reference to `glTexCoord2fv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x950): undefined reference to `glEnd'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x955): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x95f): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x964): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x969): undefined reference to `glPopAttrib'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x96e): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::error::error(rs2_error*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x2a): undefined reference to `rs2_get_error_message'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x74): undefined reference to `rs2_get_failed_function'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x9b): undefined reference to `rs2_get_failed_function'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x102): undefined reference to `rs2_get_failed_args'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x129): undefined reference to `rs2_get_failed_args'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x190): undefined reference to `rs2_get_librealsense_exception_type'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x1a5): undefined reference to `rs2_free_error'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::error::handle(rs2_error*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25error6handleEP9rs2_error[_ZN3rs25error6handleEP9rs2_error]+0x22): undefined reference to `rs2_get_librealsense_exception_type'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::stream_profile::stream_profile(rs2_stream_profile const*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs214stream_profileC2EPK18rs2_stream_profile[_ZN3rs214stream_profileC5EPK18rs2_stream_profile]+0xc1): undefined reference to `rs2_get_stream_profile_data'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs214stream_profileC2EPK18rs2_stream_profile[_ZN3rs214stream_profileC5EPK18rs2_stream_profile]+0xe7): undefined reference to `rs2_is_s...&lt;/P&gt;</description>
    <pubDate>Tue, 04 Sep 2018 15:32:09 GMT</pubDate>
    <dc:creator>CChuq</dc:creator>
    <dc:date>2018-09-04T15:32:09Z</dc:date>
    <item>
      <title>Building examples (capture) realsense D435</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618578#M13358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am experiencing problems when trying to build from source the examples provided by intel ( &lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/examples"&gt;https://github.com/IntelRealSense/librealsense/tree/master/examples&lt;/A&gt; librealsense/examples at master · IntelRealSense/librealsense · GitHub  ) . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Information about my pc/ setup :&lt;/P&gt;&lt;P&gt;OS : Ubuntu 16.04 LTS&lt;/P&gt;&lt;P&gt;Kernel: 4.15.0-33-generic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;History : &lt;/P&gt;&lt;P&gt;First, I installed the realsense sdk following the instructions provided here &lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md&lt;/A&gt; librealsense/distribution_linux.md at master · IntelRealSense/librealsense · GitHub   and here &lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md&lt;/A&gt; librealsense/&lt;A href="http://installation.md"&gt;installation.md&lt;/A&gt; at master · IntelRealSense/librealsense · GitHub  , and have been able to run realsense-viewer without any issues.&lt;/P&gt;&lt;P&gt;Then, I tried building the capture example. To do this I created a build directory inside examples/capture and run  :&lt;/P&gt;&lt;P&gt;     cmake ..  -DBUILD_GRAPHICAL_EXAMPLES=true , from examples/capture/build&lt;/P&gt;&lt;P&gt;with the following output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- The C compiler identification is GNU 5.4.0&lt;/P&gt;&lt;P&gt;-- The CXX compiler identification is GNU 5.4.0&lt;/P&gt;&lt;P&gt;-- Check for working C compiler: /usr/bin/cc&lt;/P&gt;&lt;P&gt;-- Check for working C compiler: /usr/bin/cc -- works&lt;/P&gt;&lt;P&gt;-- Detecting C compiler ABI info&lt;/P&gt;&lt;P&gt;-- Detecting C compiler ABI info - done&lt;/P&gt;&lt;P&gt;-- Detecting C compile features&lt;/P&gt;&lt;P&gt;-- Detecting C compile features - done&lt;/P&gt;&lt;P&gt;-- Check for working CXX compiler: /usr/bin/c++&lt;/P&gt;&lt;P&gt;-- Check for working CXX compiler: /usr/bin/c++ -- works&lt;/P&gt;&lt;P&gt;-- Detecting CXX compiler ABI info&lt;/P&gt;&lt;P&gt;-- Detecting CXX compiler ABI info - done&lt;/P&gt;&lt;P&gt;-- Detecting CXX compile features&lt;/P&gt;&lt;P&gt;-- Detecting CXX compile features - done&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX11&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX11 - Success&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX0X&lt;/P&gt;&lt;P&gt;-- Performing Test COMPILER_SUPPORTS_CXX0X - Success&lt;/P&gt;&lt;P&gt;-- Configuring done&lt;/P&gt;&lt;P&gt;-- Generating done&lt;/P&gt;&lt;P&gt;-- Build files have been written to: /home/awdw/realsense_install/librealsense/examples/capture/build&lt;/P&gt;&lt;P&gt;Then I run :&lt;/P&gt;&lt;P&gt;make&lt;/P&gt;&lt;P&gt;with the following output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scanning dependencies of target rs-capture&lt;/P&gt;&lt;P&gt;[ 50%] Building CXX object CMakeFiles/rs-capture.dir/rs-capture.cpp.o&lt;/P&gt;&lt;P&gt;In file included from /home/awdw/realsense_install/librealsense/examples/capture/rs-capture.cpp:5:0:&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp: In member function 'rect texture::calc_grid(float2, int)':&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'w' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;         return rect{ w, h, new_w, new_h}; //column count, line count, cell width cell height&lt;/P&gt;&lt;P&gt;                                        ^&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'h' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'new_w' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;/home/awdw/realsense_install/librealsense/examples/capture/../example.hpp:189:40: warning: narrowing conversion of 'new_h' from 'double' to 'float' inside { } [-Wnarrowing]&lt;/P&gt;&lt;P&gt;[100%] Linking CXX executable rs-capture&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `draw_pointcloud(float, float, glfw_state&amp;amp;, rs2::points&amp;amp;)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x647): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x651): undefined reference to `glPushAttrib'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x676): undefined reference to `glClearColor'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x680): undefined reference to `glClear'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x68a): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x68f): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6d1): undefined reference to `gluPerspective'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6db): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x6e0): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x71f): undefined reference to `gluLookAt'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x754): undefined reference to `glTranslatef'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x77a): undefined reference to `glRotated'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x79f): undefined reference to `glRotated'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7b4): undefined reference to `glTranslatef'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7ca): undefined reference to `glPointSize'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7d4): undefined reference to `glEnable'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7de): undefined reference to `glEnable'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x7fa): undefined reference to `glBindTexture'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x844): undefined reference to `glTexParameterfv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x858): undefined reference to `glTexParameteri'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x86c): undefined reference to `glTexParameteri'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x876): undefined reference to `glBegin'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x91e): undefined reference to `glVertex3fv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x942): undefined reference to `glTexCoord2fv'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x950): undefined reference to `glEnd'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x955): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x95f): undefined reference to `glMatrixMode'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x964): undefined reference to `glPopMatrix'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x969): undefined reference to `glPopAttrib'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text+0x96e): undefined reference to `glPushMatrix'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::error::error(rs2_error*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x2a): undefined reference to `rs2_get_error_message'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x74): undefined reference to `rs2_get_failed_function'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x9b): undefined reference to `rs2_get_failed_function'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x102): undefined reference to `rs2_get_failed_args'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x129): undefined reference to `rs2_get_failed_args'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x190): undefined reference to `rs2_get_librealsense_exception_type'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25errorC2EP9rs2_error[_ZN3rs25errorC5EP9rs2_error]+0x1a5): undefined reference to `rs2_free_error'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::error::handle(rs2_error*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs25error6handleEP9rs2_error[_ZN3rs25error6handleEP9rs2_error]+0x22): undefined reference to `rs2_get_librealsense_exception_type'&lt;/P&gt;&lt;P&gt;CMakeFiles/rs-capture.dir/rs-capture.cpp.o: In function `rs2::stream_profile::stream_profile(rs2_stream_profile const*)':&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs214stream_profileC2EPK18rs2_stream_profile[_ZN3rs214stream_profileC5EPK18rs2_stream_profile]+0xc1): undefined reference to `rs2_get_stream_profile_data'&lt;/P&gt;&lt;P&gt;rs-capture.cpp:(.text._ZN3rs214stream_profileC2EPK18rs2_stream_profile[_ZN3rs214stream_profileC5EPK18rs2_stream_profile]+0xe7): undefined reference to `rs2_is_s...&lt;/P&gt;</description>
      <pubDate>Tue, 04 Sep 2018 15:32:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618578#M13358</guid>
      <dc:creator>CChuq</dc:creator>
      <dc:date>2018-09-04T15:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Building examples (capture) realsense D435</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618579#M13359</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;It looks like you've made the build directory in the wrong directory altogether and that's why you're getting these errors. &lt;P&gt;&amp;nbsp;&lt;/P&gt;The Librealsense installation instructions say to create a build directory in the librealsense root directory, not in examples/capture.&lt;UL&gt;&lt;LI&gt;navigate to the Librealsense root directory &lt;/LI&gt;&lt;LI&gt;mkdir build&lt;/LI&gt;&lt;LI&gt;cd build&lt;/LI&gt;&lt;LI&gt;cmake .. -DBUILD_EXAMPLES=true&lt;/LI&gt;&lt;/UL&gt;Please let me know if you're able to run the examples after following these instructions!&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;Sahira</description>
      <pubDate>Wed, 05 Sep 2018 20:06:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618579#M13359</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-05T20:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Building examples (capture) realsense D435</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618580#M13360</link>
      <description>&lt;P&gt;I am trying to develop visual odometry by intel realsense T265 camera but i am unable to do so . Is their any way or any document regarding this which can help me . &lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 10:11:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618580#M13360</guid>
      <dc:creator>rjeth</dc:creator>
      <dc:date>2019-08-05T10:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Building examples (capture) realsense D435</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618581#M13361</link>
      <description>&lt;P&gt;Intel has a guide to getting data from the T265's IMU.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intelrealsense.com/how-to-getting-imu-data-from-d435i-and-t265/" target="_self" alt="https://www.intelrealsense.com/how-to-getting-imu-data-from-d435i-and-t265/"&gt;&lt;/A&gt;&lt;A href="https://www.intelrealsense.com/how-to-getting-imu-data-from-d435i-and-t265/"&gt;https://www.intelrealsense.com/how-to-getting-imu-data-from-d435i-and-t265/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;There is also a long presentation on YouTube by a T265 expert in an Intel seminar.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;​&lt;A href="https://youtube.com/watch?v=62vm0_RZ1n" target="_self" alt="https://youtube.com/watch?v=62vm0_RZ1n"&gt;&lt;/A&gt;&lt;A href="https://youtube.com/watch?v=62vm0_RZ1n"&gt;https://youtube.com/watch?v=62vm0_RZ1n&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 13:03:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Building-examples-capture-realsense-D435/m-p/618581#M13361</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2019-08-05T13:03:08Z</dc:date>
    </item>
  </channel>
</rss>

