<?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: MATLAB RGB point cloud in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/1205171#M17679</link>
    <description>&lt;P&gt;In which for you save the point cloud...?&lt;/P&gt;</description>
    <pubDate>Sat, 29 Aug 2020 06:09:15 GMT</pubDate>
    <dc:creator>SonuMathur</dc:creator>
    <dc:date>2020-08-29T06:09:15Z</dc:date>
    <item>
      <title>MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584717#M10949</link>
      <description>&lt;P&gt;I would like to acquire and plot RGB colored point clouds from a D435 in MATLAB.  The desired output is analogous to the rs-pointcloud.cpp example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I reviewed rs-pointcloud.cpp and the MATLAB wrappers, and I'm able to acquire a point cloud, however I can't find how to properly color and plot the point cloud.  Below is my code, which I hope will be useful to others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two options that I'm considering:&lt;/P&gt;&lt;P&gt;1) is there a way for MATLAB to consume the realsense.pointcloud() object directly?&lt;/P&gt;&lt;P&gt;2) Assuming the answer to 1) is no, can I access and use the vertices and textures to reformat the RS point cloud object into a MATLAB point cloud object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points.get_vertices(); and points.get_texture_coordinates(); seem to get correct values, but I'm not sure how to use them in MATLAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATLAB:&lt;/P&gt;&lt;P&gt;    % Make Pipeline object to manage streaming&lt;/P&gt;&lt;P&gt;    pipe = realsense.pipeline();&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % define point cloud object&lt;/P&gt;&lt;P&gt;    pcl_obj = realsense.pointcloud();&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % define colorizer to give point cloud color&lt;/P&gt;&lt;P&gt;    colorizer = realsense.colorizer();&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % Start streaming on an arbitrary camera with default settings&lt;/P&gt;&lt;P&gt;    profile = pipe.start();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    % Get frames. We discard the first couple to allow&lt;/P&gt;&lt;P&gt;    % the camera time to settle&lt;/P&gt;&lt;P&gt;    for i = 1:5&lt;/P&gt;&lt;P&gt;        frames = pipe.wait_for_frames();&lt;/P&gt;&lt;P&gt;    end&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % Stop streaming&lt;/P&gt;&lt;P&gt;    pipe.stop();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    % Select depth frame&lt;/P&gt;&lt;P&gt;    depth = frames.get_depth_frame();   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    % get point cloud points without color&lt;/P&gt;&lt;P&gt;    points = pcl_obj.calculate(depth);&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % get texture mapping&lt;/P&gt;&lt;P&gt;    color = frames.get_color_frame();&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;    % map point cloud to color&lt;/P&gt;&lt;P&gt;    pcl_obj.map_to(color);   &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;    % get vertices (nx3)&lt;/P&gt;&lt;P&gt;    vertices = points.get_vertices();&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    % get texture coordinates (nx2)&lt;/P&gt;&lt;P&gt;    tex_coords = points.get_texture_coordinates();&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 17:52:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584717#M10949</guid>
      <dc:creator>JBos3</dc:creator>
      <dc:date>2018-09-26T17:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584718#M10950</link>
      <description>&lt;P&gt;Hello jjbos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you for our interest in the Intel RealSense D435 camera. &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Please make sure that you have the latest firmware on your camera and librealsense version 2.16.1. &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;We have modified your code (it follow the export_to_ply python examples).&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;function pc_example&lt;/P&gt;&lt;P&gt; % Make Pipeline object to manage streaming&lt;/P&gt;&lt;P&gt;    pipe = realsense.pipeline(); &lt;/P&gt;&lt;P&gt;    % define point cloud object&lt;/P&gt;&lt;P&gt;    pcl_obj = realsense.pointcloud();&lt;/P&gt;&lt;P&gt;   % Start streaming on an arbitrary camera with default settings&lt;/P&gt;&lt;P&gt;    pipe.start();&lt;/P&gt;&lt;P&gt;    % Get frames. We discard the first couple to allow&lt;/P&gt;&lt;P&gt;    % the camera time to settle&lt;/P&gt;&lt;P&gt;    for i = 1:5&lt;/P&gt;&lt;P&gt;        frames = pipe.wait_for_frames();&lt;/P&gt;&lt;P&gt;    end&lt;/P&gt;&lt;P&gt;     % Select depth frame&lt;/P&gt;&lt;P&gt;    depth = frames.get_depth_frame();     &lt;/P&gt;&lt;P&gt;    % get color frame&lt;/P&gt;&lt;P&gt;    color = frames.get_color_frame();&lt;/P&gt;&lt;P&gt;    % map point cloud to color&lt;/P&gt;&lt;P&gt;    pcl_obj.map_to(color);  &lt;/P&gt;&lt;P&gt;    % get point cloud points without color&lt;/P&gt;&lt;P&gt;    pnts = pcl_obj.calculate(depth);&lt;/P&gt;&lt;P&gt;    %export ply file&lt;/P&gt;&lt;P&gt;    pnts.export_to_ply('pc_example.ply',color);&lt;/P&gt;&lt;P&gt; pipe.stop();&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Please let us know if this works with you as well!&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;Eliza</description>
      <pubDate>Thu, 27 Sep 2018 17:33:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584718#M10950</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-09-27T17:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584719#M10951</link>
      <description>&lt;P&gt;Hi Eliza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.  This is helpful, and *almost* what I need. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to visualize the colored point cloud live stream, just like the rs-pointcloud.cpp example... but in MATLAB.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to convert the RealSense point cloud object to something MATLAB can manipulate without having to write and then read an intermediate .ply file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;-Joe&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 18:54:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584719#M10951</guid>
      <dc:creator>JBos3</dc:creator>
      <dc:date>2018-09-28T18:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584720#M10952</link>
      <description>&lt;P&gt;Hello jjbos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;You check out this post that I believe can help you with your project: &lt;A href="https://www.mathworks.com/matlabcentral/answers/7202-processing-on-a-live-webcam-streaming-video"&gt;https://www.mathworks.com/matlabcentral/answers/7202-processing-on-a-live-webcam-streaming-video&lt;/A&gt; &lt;A href="https://www.mathworks.com/matlabcentral/answers/7202-processing-on-a-live-webcam-streaming-video"&gt;https://www.mathworks.com/matlabcentral/answers/7202-processing-on-a-live-webcam-streaming-video&lt;/A&gt;. Please note that you might need the Image Acquisition Toolbox. &lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Eliza</description>
      <pubDate>Mon, 01 Oct 2018 16:27:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584720#M10952</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-10-01T16:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584721#M10953</link>
      <description>&lt;P&gt;Hi Eliza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for looking but this does not address the issue.  The link you sent relates to processing 2D images.  Please correct me if you saw something related to point clouds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, I need to convert the RealSense point cloud object and other data (e.g. pc.vertices, pc.texture, color image, depth image) into a MATLAB point cloud without going through an intermediate .ply file.  MATLAB requires point cloud vertices and RGB values for each vertex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It appears I can get the correct vertices from the point cloud object but I don't know how to get the corresponding RGB values to color the point cloud.  Can you help with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;-Joe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is how I get the point cloud vertices (x,y,z values), but again I need the corresponding RGB values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% Make Pipeline object to manage streaming&lt;/P&gt;&lt;P&gt;pipe = realsense.pipeline();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% define point cloud object&lt;/P&gt;&lt;P&gt;pcl_obj = realsense.pointcloud();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% define colorizer to give point cloud color&lt;/P&gt;&lt;P&gt;colorizer = realsense.colorizer();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% Start streaming on an arbitrary camera with default settings&lt;/P&gt;&lt;P&gt;profile = pipe.start();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% Get frames.  Discard the first several to allow&lt;/P&gt;&lt;P&gt;% the camera time to settle&lt;/P&gt;&lt;P&gt;for i = 1:5&lt;/P&gt;&lt;P&gt;    frames = pipe.wait_for_frames();&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% Select depth frame&lt;/P&gt;&lt;P&gt;depth = frames.get_depth_frame();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% get texture mapping&lt;/P&gt;&lt;P&gt;color = frames.get_color_frame();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% map point cloud to color&lt;/P&gt;&lt;P&gt;pcl_obj.map_to(color);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% get point cloud points without color&lt;/P&gt;&lt;P&gt;points = pcl_obj.calculate(depth);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% get vertices (nx3)&lt;/P&gt;&lt;P&gt;vertices = points.get_vertices();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;% get texture coordinates (nx2)&lt;/P&gt;&lt;P&gt; tex_coords = points.get_texture_coordinates();&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 17:25:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584721#M10953</guid>
      <dc:creator>JBos3</dc:creator>
      <dc:date>2018-10-01T17:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584722#M10954</link>
      <description>&lt;P&gt;Hello jjbos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;The RealSense team is working on an example to demonstrate how to do this but I don't have a timeline for when it will be completed. Meanwhile, you can check out this code: &lt;A href="https://communities.intel.com/community/tech/realsense/blog/2018/10/03/unofficial-pointcloud-stream-viewer-in-matlab"&gt;https://communities.intel.com/community/tech/realsense/blog/2018/10/03/unofficial-pointcloud-stream-viewer-in-matlab&lt;/A&gt; &lt;A href="https://communities.intel.com/community/tech/realsense/blog/2018/10/03/unofficial-pointcloud-stream-viewer-in-matlab"&gt;https://communities.intel.com/community/tech/realsense/blog/2018/10/03/unofficial-pointcloud-stream-viewer-in-matlab&lt;/A&gt;.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;We need to figure out how to use the pcshow command and to use the same algorithm in the align.cpp example to make the depth and color frames the same size.&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;Jesus G.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Intel Customer Support</description>
      <pubDate>Wed, 03 Oct 2018 15:26:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584722#M10954</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-10-03T15:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584723#M10955</link>
      <description>&lt;P&gt;Thank you.  I very much look forward to the colored point cloud example in MATLAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Joe&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 20:20:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584723#M10955</guid>
      <dc:creator>JBos3</dc:creator>
      <dc:date>2018-10-03T20:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584724#M10956</link>
      <description>&lt;P&gt;I made this code that I thinks solve this problem:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Make Pipeline object to manage streaming&lt;/P&gt;&lt;P&gt;pipe = realsense.pipeline();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Make Colorizer object to prettify depth output&lt;/P&gt;&lt;P&gt;colorizer = realsense.colorizer();&lt;/P&gt;&lt;P&gt;% define point cloud object&lt;/P&gt;&lt;P&gt;pcl_obj = realsense.pointcloud();&lt;/P&gt;&lt;P&gt;% Start streaming with default settings&lt;/P&gt;&lt;P&gt;profile = pipe.start();&lt;/P&gt;&lt;P&gt;align_to = realsense.stream.color;&lt;/P&gt;&lt;P&gt;alignedFs = realsense.align(align_to);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Get streaming device's name&lt;/P&gt;&lt;P&gt;dev = profile.get_device();&lt;/P&gt;&lt;P&gt;name = dev.get_info(realsense.camera_info.name);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Get frames. We discard the first couple to allow&lt;/P&gt;&lt;P&gt;% the camera time to settle&lt;/P&gt;&lt;P&gt;for i = 1:5&lt;/P&gt;&lt;P&gt;fs = pipe.wait_for_frames();&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%create a point cloud player&lt;/P&gt;&lt;P&gt;player1 = pcplayer([-1 1],[-1 1],[-1 1]);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;frameCount =0;&lt;/P&gt;&lt;P&gt;while isOpen(player1)&amp;nbsp;&amp;amp;&amp;amp; frameCount &amp;lt; 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;frameCount = frameCount+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;fs = pipe.wait_for_frames();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;%align the depth frames to the color stream&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;aligned_frames = alignedFs.process(fs);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;depth = aligned_frames.get_depth_frame();&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;color = fs.get_color_frame();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;%get the points cloud based on the aligned depth stream&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;pnts = pcl_obj.calculate(depth);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;pcl_obj.map_to(color);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;colordata = color.get_data();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;colordatavector = [colordata(1:3:end)',colordata(2:3:end)',colordata(3:3:end)'];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;vertices = pnts.get_vertices();&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;view(player1,vertices,colordatavector)&amp;nbsp;&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Stop streaming&lt;/P&gt;&lt;P&gt;pipe.stop();&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 07:43:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584724#M10956</guid>
      <dc:creator>VHess</dc:creator>
      <dc:date>2018-12-21T07:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584725#M10957</link>
      <description>&lt;P&gt;Hello! I have a problem with the code, the function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;alignedFs = realsense.align (align_to);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Error using realsense.align Error: File: align.m Line: 9 Column: 20 A constructor call to superclass realsense.filter appears after the object is used, or after a return)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apparently there is an error in the code of align.m, could you help me with this matter? I would greatly appreciate it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;S.V.I&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 22:22:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584725#M10957</guid>
      <dc:creator>SVerg</dc:creator>
      <dc:date>2019-01-03T22:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584726#M10958</link>
      <description>&lt;P&gt;&lt;A href="https://community.intel.com/sfdc-users/SVerg"&gt;@SVerg&lt;/A&gt;​&amp;nbsp;I had to comment out validateattributes on line 17 in align.m to get it to work, but I'm not sure if that is related to your issue.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 00:48:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584726#M10958</guid>
      <dc:creator>VHess</dc:creator>
      <dc:date>2019-01-08T00:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584727#M10959</link>
      <description>&lt;P&gt;Thanks VHess!  Works like a charm.  Cheers.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 06:17:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/584727#M10959</guid>
      <dc:creator>JBos3</dc:creator>
      <dc:date>2019-01-11T06:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/1205171#M17679</link>
      <description>&lt;P&gt;In which for you save the point cloud...?&lt;/P&gt;</description>
      <pubDate>Sat, 29 Aug 2020 06:09:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/1205171#M17679</guid>
      <dc:creator>SonuMathur</dc:creator>
      <dc:date>2020-08-29T06:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: MATLAB RGB point cloud</title>
      <link>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/1363273#M17750</link>
      <description>&lt;P&gt;Hello VHess,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I run your codes but I have faced an error as below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error using realsense.align&lt;BR /&gt;Error: File: align.m Line: 4 Column: 1&lt;BR /&gt;Illegal use of reserved keyword "classdef".&lt;BR /&gt;Error in realsense.VHess (line 21)&lt;BR /&gt;alignedFs = realsense.align(align_to);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using Matlab2020b!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any idea what the issue might be?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 07:27:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/MATLAB-RGB-point-cloud/m-p/1363273#M17750</guid>
      <dc:creator>Pcmehdi</dc:creator>
      <dc:date>2022-02-24T07:27:28Z</dc:date>
    </item>
  </channel>
</rss>

