Clusterring of 3D point cloud
Afficher commentaires plus anciens
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 commentaires
darova
le 11 Août 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
le 11 Août 2019
darova
le 11 Août 2019
Here is what i achieved using griddata()

Are you trying to get equation of this surface? What you mean by "fit"?
Image Analyst
le 11 Août 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
le 12 Août 2019
darova
le 12 Août 2019
I see the face

Réponses (0)
Catégories
En savoir plus sur Process Point Clouds dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
