<?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: realsense D435 raw data in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507536#M6430</link>
    <description>&lt;P&gt;The link below contains scripting for recording files and playing them bak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md&lt;/A&gt; librealsense/&lt;A href="http://readme.md"&gt;readme.md&lt;/A&gt; at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The release of a MATLAB wrapper for RealSense SDK 2.0 is due soon.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, a user recently used the script below to read a created raw depth stream in MATLAB.  Presumably, you should change the 'IntelDepth.raw' file reference to whatever the name of your own file is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FID = fopen('IntelDepth.raw');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DepthImage = fread(FID, [720, 1280], 'uint8');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fclose(FID)&lt;/P&gt;</description>
    <pubDate>Sun, 29 Jul 2018 10:05:53 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2018-07-29T10:05:53Z</dc:date>
    <item>
      <title>realsense D435 raw data</title>
      <link>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507535#M6429</link>
      <description>&lt;P&gt;hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have RS D435 and I would like to know if there is a way to read&lt;/P&gt;&lt;P&gt;the raw data file that created with "Intel RealSense Viewer"&lt;/P&gt;&lt;P&gt;in the SDK C++ ?&lt;/P&gt;&lt;P&gt;or even better if I can read it with Matlab ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;roobi&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 08:33:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507535#M6429</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-07-29T08:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: realsense D435 raw data</title>
      <link>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507536#M6430</link>
      <description>&lt;P&gt;The link below contains scripting for recording files and playing them bak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md"&gt;https://github.com/IntelRealSense/librealsense/blob/master/src/media/readme.md&lt;/A&gt; librealsense/&lt;A href="http://readme.md"&gt;readme.md&lt;/A&gt; at master · IntelRealSense/librealsense · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The release of a MATLAB wrapper for RealSense SDK 2.0 is due soon.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, a user recently used the script below to read a created raw depth stream in MATLAB.  Presumably, you should change the 'IntelDepth.raw' file reference to whatever the name of your own file is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FID = fopen('IntelDepth.raw');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DepthImage = fread(FID, [720, 1280], 'uint8');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fclose(FID)&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 10:05:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507536#M6430</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-07-29T10:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: realsense D435 raw data</title>
      <link>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507537#M6431</link>
      <description>&lt;P&gt;in the link you send, I can only find how to read "*.bag" files&lt;/P&gt;&lt;P&gt;this methods don't work for "*.raw" files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in addition, this script will open the file correctly,&lt;/P&gt;&lt;P&gt;you need to read line by line and then transpose the matrix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;FID = fopen('IntelDepth.raw');&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;DepthImage = fread(FID, [1280, 720], 'uint16')';&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;fclose(FID);&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for you help.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 12:32:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507537#M6431</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-07-29T12:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: realsense D435 raw data</title>
      <link>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507538#M6432</link>
      <description>&lt;P&gt;There is a discussion on the MATLAB forum about opening a .raw in MATLAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://uk.mathworks.com/matlabcentral/answers/72525-how-to-open-raw-files-in-matlab"&gt;https://uk.mathworks.com/matlabcentral/answers/72525-how-to-open-raw-files-in-matlab&lt;/A&gt; How to open .raw files in matlab? - MATLAB Answers - MATLAB Central &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contributors on that discussion suggested that it can be hard to open a .raw in MATLAB because there are different types of .raw and you need to find out the particular configuration values of your .raw&lt;/P&gt;</description>
      <pubDate>Sun, 29 Jul 2018 12:42:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/realsense-D435-raw-data/m-p/507538#M6432</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-07-29T12:42:21Z</dc:date>
    </item>
  </channel>
</rss>

