views:

122

answers:

3

Basically, I'm looking for a library or SDK for handling large point clouds coming from LIDAR or scanners, typically running into many millions of points of X,Y,Z,Colour. What I'm after are as follows;

Fast display, zooming, panning Point cloud registration Fast low level access to the data Regression of surfaces and solids (not as important as the others)

While I don't mind paying for a reasonable commercial library, I'm not interested in a very expensive library (e.g. in excess of about $5k) or one with a per user run-time license cost. Open source would also be good. I found a few possibilities via google, but they all tend to be too expensive for my budget.

+2  A: 

Why don't you go have a look at the R programming language which can link directly to C code, thereby forming a bridge. R was developed with statistical code in mind but can very easily help not only to handle large datasets but also visualize them as well. There are quite a number of atmospheric scientists who are using R in their work. I know, I work with them for exactly the stuff you're trying to do. Think of R as a poor man's Matlab or IDL (but soon won't be.)

wheaties
+2  A: 

I second the call for R which I interface with C++ all the time (using e.g. the Rcpp and RInside packages).

R prefers all data in memory, so you probably want to go with a 64bit OS and a decent amount of RAM for lots of data. The Task View on High-Performance Computing with R has some pointers on dealing with large data.

Lastly, for quick visualization, the hexbin is excellent for visually summarizing large data sets. For the zooming etc aspect try the rgl package.

Dirk Eddelbuettel
A: 

In spirit of the R answers, ROOT also provides a good undeling framework for this kind of thing.

Possibly useful features:

  • C++ code base and the Cint c++ interpreter as the working shell. Python binding.
  • Can display three dim point clouds
  • A set of geometry classes (though I don't believe that they support all the operations that you need)
  • Developed by nuclear and particle physicists instead of by statisticians :p
dmckee