Clusterring of 3D point cloud
Show older comments
Hi,
I am having 3D data to fit surface on. I need to partition data to use different degrees while surface fitting. Any suggestion will be highly appreciated.
6 Comments
darova
on 11 Aug 2019
You can use simple code
ind1 = xmin < x & x < xmax;
ind2 = ymin < y & y < ymax;
ind = ind1 & ind2; % indices of point you want

Srinu Vasu
on 11 Aug 2019
darova
on 11 Aug 2019
Here is what i achieved using griddata()

Are you trying to get equation of this surface? What you mean by "fit"?
Image Analyst
on 11 Aug 2019
What do you mean by "surface fitting"? Do you mean like fitting a plane through all the points? Do you mean something like a Delaunay surface to contain all the points?
Srinu Vasu
on 12 Aug 2019
darova
on 12 Aug 2019
I see the face

Answers (0)
Categories
Find more on Process Point Clouds in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!