<?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 Creat a 3D map from 3 Depth Images in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Creat-a-3D-map-from-3-Depth-Images/m-p/1078711#M60790</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I try to creat a 3D map from 3 Depth Images. This trying is based on FF_ObjectTracking of sample. And I use Intel Realsense SR300.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;First, I got coordinates (x,y,z) from 3 Depth Images . Second, I transformed the coordinates to "world coordinate system". Third, I exported the world coordinates to texts. Finally, I created a 3D map from the texts.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Now, I have a trouble at Second Step maybe.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I show Code:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;void getDepthData(PXCImage* depthFrame, int DEPTH_HEIGHT, int DEPTH_WIDTH , int count, PXCProjection *project) // This is my new function&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;int i, j;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;float x, y, z;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;FILE *p,*manage,*inv;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;char buf[100];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;float inv_rotMat[4][4]; // This is&amp;nbsp;Inverse matrix&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage::ImageData Depthdata;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;unsigned short *outdata;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCPoint3DF32 test[640*480],intest[640*480];&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;// Get Depth data&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;auto sts = depthFrame-&amp;gt;AcquireAccess(PXCImage::ACCESS_READ,PXCImage::PIXEL_FORMAT_DEPTH, &amp;amp;Depthdata);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;if (sts &amp;lt; PXC_STATUS_NO_ERROR) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;outdata = (unsigned short *)Depthdata.planes[0];&lt;/P&gt;

&lt;P&gt;//Get&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Inverse matrix&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(buf, "Depth_%d.asc", count);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;p,buf,"w");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;manage, "ManageFile.txt", "a");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fprintf(manage, "%s\n", buf);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(buf, "inv_Matrix_%d.txt", count);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;inv, buf, "r");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;for (i = 0; i &amp;lt; 4; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (j = 0; j &amp;lt; 4; j++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;fscanf_s(inv, "%f", &amp;amp;inv_rotMat&lt;I&gt;&lt;J&gt;);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/J&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;int intnum;&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;project-&amp;gt;QueryVertices(depthFrame, &amp;nbsp;test);// Get coordinates(x,y,z) 640*480&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;intnum=0;&lt;/P&gt;

&lt;P&gt;//Transform the coordinates by&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Inverse matrix&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (i = -DEPTH_HEIGHT / 2; i &amp;lt; DEPTH_HEIGHT / 2; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (j = -DEPTH_WIDTH / 2; j &amp;lt; DEPTH_WIDTH / 2; j++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (test[intnum].z != 0) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;x = inv_rotMat[0][0] * (float)test[intnum].x + inv_rotMat[0][1] * (float)test[intnum].y + inv_rotMat[0][2] * (float)test[intnum].z + inv_rotMat[0][3];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;y = inv_rotMat[1][0] * (float)test[intnum].x + inv_rotMat[1][1] * (float)test[intnum].y + inv_rotMat[1][2] * (float)test[intnum].z + inv_rotMat[1][3];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;z = inv_rotMat[2][0] * (float)test[intnum].x + inv_rotMat[2][1] * (float)test[intnum].y + inv_rotMat[2][2] * (float)test[intnum].z + inv_rotMat[2][3];&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fprintf_s(p, "%f %f %f\n", x, y, z); //Export the "world coordinates"&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;intnum++;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(inv);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(p);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(manage);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;depthFrame-&amp;gt;ReleaseAccess(&amp;amp;Depthdata);&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;This function is called in&amp;nbsp;ProjectPoint function of main.cpp .&lt;/P&gt;

&lt;P&gt;like this&lt;/P&gt;

&lt;P&gt;getDepthData(sample-&amp;gt;depth,info.height,info.width,filenum,projection);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;A result is no good. Because it can not&amp;nbsp;align the&amp;nbsp;coordinates.&amp;nbsp;The coordinates are not matched.&lt;/P&gt;

&lt;P&gt;Plese help me!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Takuro.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Aug 2016 15:51:14 GMT</pubDate>
    <dc:creator>takuro_m_</dc:creator>
    <dc:date>2016-08-01T15:51:14Z</dc:date>
    <item>
      <title>Creat a 3D map from 3 Depth Images</title>
      <link>https://community.intel.com/t5/Software-Archive/Creat-a-3D-map-from-3-Depth-Images/m-p/1078711#M60790</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I try to creat a 3D map from 3 Depth Images. This trying is based on FF_ObjectTracking of sample. And I use Intel Realsense SR300.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;First, I got coordinates (x,y,z) from 3 Depth Images . Second, I transformed the coordinates to "world coordinate system". Third, I exported the world coordinates to texts. Finally, I created a 3D map from the texts.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Now, I have a trouble at Second Step maybe.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I show Code:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;void getDepthData(PXCImage* depthFrame, int DEPTH_HEIGHT, int DEPTH_WIDTH , int count, PXCProjection *project) // This is my new function&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;int i, j;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;float x, y, z;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;FILE *p,*manage,*inv;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;char buf[100];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;float inv_rotMat[4][4]; // This is&amp;nbsp;Inverse matrix&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage::ImageData Depthdata;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;unsigned short *outdata;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCPoint3DF32 test[640*480],intest[640*480];&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;// Get Depth data&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;auto sts = depthFrame-&amp;gt;AcquireAccess(PXCImage::ACCESS_READ,PXCImage::PIXEL_FORMAT_DEPTH, &amp;amp;Depthdata);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;if (sts &amp;lt; PXC_STATUS_NO_ERROR) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;outdata = (unsigned short *)Depthdata.planes[0];&lt;/P&gt;

&lt;P&gt;//Get&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Inverse matrix&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(buf, "Depth_%d.asc", count);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;p,buf,"w");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;manage, "ManageFile.txt", "a");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fprintf(manage, "%s\n", buf);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;sprintf(buf, "inv_Matrix_%d.txt", count);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fopen_s(&amp;amp;inv, buf, "r");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;for (i = 0; i &amp;lt; 4; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (j = 0; j &amp;lt; 4; j++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;fscanf_s(inv, "%f", &amp;amp;inv_rotMat&lt;I&gt;&lt;J&gt;);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/J&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;int intnum;&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;project-&amp;gt;QueryVertices(depthFrame, &amp;nbsp;test);// Get coordinates(x,y,z) 640*480&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;intnum=0;&lt;/P&gt;

&lt;P&gt;//Transform the coordinates by&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Inverse matrix&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (i = -DEPTH_HEIGHT / 2; i &amp;lt; DEPTH_HEIGHT / 2; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (j = -DEPTH_WIDTH / 2; j &amp;lt; DEPTH_WIDTH / 2; j++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (test[intnum].z != 0) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;x = inv_rotMat[0][0] * (float)test[intnum].x + inv_rotMat[0][1] * (float)test[intnum].y + inv_rotMat[0][2] * (float)test[intnum].z + inv_rotMat[0][3];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;y = inv_rotMat[1][0] * (float)test[intnum].x + inv_rotMat[1][1] * (float)test[intnum].y + inv_rotMat[1][2] * (float)test[intnum].z + inv_rotMat[1][3];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;z = inv_rotMat[2][0] * (float)test[intnum].x + inv_rotMat[2][1] * (float)test[intnum].y + inv_rotMat[2][2] * (float)test[intnum].z + inv_rotMat[2][3];&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fprintf_s(p, "%f %f %f\n", x, y, z); //Export the "world coordinates"&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;intnum++;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(inv);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(p);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;fclose(manage);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;depthFrame-&amp;gt;ReleaseAccess(&amp;amp;Depthdata);&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;This function is called in&amp;nbsp;ProjectPoint function of main.cpp .&lt;/P&gt;

&lt;P&gt;like this&lt;/P&gt;

&lt;P&gt;getDepthData(sample-&amp;gt;depth,info.height,info.width,filenum,projection);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;A result is no good. Because it can not&amp;nbsp;align the&amp;nbsp;coordinates.&amp;nbsp;The coordinates are not matched.&lt;/P&gt;

&lt;P&gt;Plese help me!&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Takuro.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2016 15:51:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Creat-a-3D-map-from-3-Depth-Images/m-p/1078711#M60790</guid>
      <dc:creator>takuro_m_</dc:creator>
      <dc:date>2016-08-01T15:51:14Z</dc:date>
    </item>
  </channel>
</rss>

