<div dir="ltr">Hi Bruno,<div><br></div><div>We have a point cloud capability that we've developed here at Pelican Mapping that integrates nicely with osgEarth.  You can see a video of it in action here <a href="https://youtu.be/lUeF4Y8yGNI">https://youtu.be/lUeF4Y8yGNI</a> rendering around 5 billion points.  We can easily perform picking on individual points so you can get all the information about the point (location, RGB, intensity, etc) but we don't have any support for modifying the point cloud (although that is something we could add).  Editing a giant paged dataset would take some special consideration, but it's definitely doable.</div><div><br></div><div>Let me know if you want anymore information, happy to chat sometime.</div><div><br></div><div>Thanks!</div><div><br></div><div>Jason</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Apr 26, 2016 at 11:28 AM Robert Osfield <<a href="mailto:robert.osfield@gmail.com">robert.osfield@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Bruno,<div class="gmail_extra"><br><div class="gmail_quote"></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 26 April 2016 at 16:04, Bruno Oliveira <span dir="ltr"><<a href="mailto:bruno.manata.oliveira@gmail.com" target="_blank">bruno.manata.oliveira@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>the tool I'm creating is designed to handle clouds from 100 million points to 1 billion, hence the out of core rendering.<br></div></div>By "<span>with the already existing code", </span>I mean code from OSG.<br></div></div></blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>100 million to 1 billion does qualify as "huge" point cloud.  </div><div><br></div><div>The issues aren't directly related to the OSG, but how to manage that amount of data on disk, in main memory and on the GPU.  The OSG itself can be used to start the data in main memory, on the GPU, and even provide mechanisms for paging data in out from disk (via PagedLOD/DatabasePager).  You will be responsible for how you set up the scene graph, how you do this is the crux of the task, it's not trivial given the amount of data you are dealing with.</div><div><br></div><div>When learning what can be done you need to start doing the maths on how much memory each point in your cloud requires. A single vec3 for each point for 100 million points requires 1.2 GB, 1 bilion requires 12GB.  When passing data to OpenGL you need to put the data into OpenGL FIFO which then gets passed in driver memory.  If you are using VBO's then you'll end potentially with one copy of data in application memory, one in driver memory, and then when it finally gets rendered a copy on the GPU too.  This means we'll need at least 2.4GB main memory and 1.2GB on the GPU just for 100 million vertices - this without anything else.</div><div><br></div><div>This is without any colours, normals or textures.  You haven't mentioned anything about these, perhaps you should... as it makes a big difference to the memory footprint we are talking about.  I'm not expecting that you'll just have white points...</div><div><br></div><div>So when you start asking can the OSG do it, you can get it to scale to handling multi-terrabyte databases thanks to the built in paging support, but only if you give it an appropriately built scene graph - point clouds are a niche that doesn't have open source tools that will build the database for you.  You need to be realistic about the memory management, handling really large amounts of data requires far more skills than just rendering a few pretty textured polygons.  I don't know what your background knowledge, what can we assume?</div><div><br></div><div>If you don't have the skills right now then you'll need patiently develop them OR just pay a 3rd party engineer who has the skills to work with you on it. </div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>Robert.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div> </div></div></div></div>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org" target="_blank">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div>