I have scattered point clouds in 2d. My problem is I would like to get the boundary's point to get the contour of the point clouds. I know about this 'marching square' howver this algorithm usually used for pixel in 2d. Any one have idea how to get the contour from 2d point clouds or details of 'Marching square' algorithm? In addition, convex hull does not work in my case.

Thanks in advance.

link|improve this question
I think that a marching squares approach is still your best bet. (Anyone please correct me if I'm wrong). You would map your 2d points to "pixel" values, updating the density of points around that pixel. So if many points are close to a certain pixel, the density is higher than when there is just one on top or nearby. From there on you would proceed with Marching Squares. – Bart Jun 14 '11 at 15:08
thanks.can you please explain what do you mean by map my 2d points to 'pixel'? – stephie Jun 15 '11 at 7:51
I was thinking of something similar to metaballs in 3D (or you might have a look at surface reconstruction methods for SPH fluid simulations). This link contains mostly what I'm hinting at: geisswerks.com/ryan/BLOBS/blobs.html Now of course you would ignore the 3D and the ray casting. Would something like that suit you? Another interesting link might be this: http.developer.nvidia.com/GPUGems3/gpugems3_ch07.html – Bart Jun 16 '11 at 1:18
feedback

1 Answer

I would suggest using the Delaunay triangulation as a base algorithm, then removing all triangles which are too big (thus splitting the clouds to groups), then removing all edges used by more than one triangle.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.