ibach Posted November 17, 2020 Posted November 17, 2020 I'd really love to be able to select points from a point cloud and create a planar surface from selected coordinates. Further on I'd like to be able to select the points to be used as polygon boundary of that surface. So... Pick a lot of points from the point cloud, select points for boundary vertices, calculate the middle value of x, y, z for all selected points, not taking the boundary vertices into the account for the direction of the plane but projecting them onto the calculated plane as a boundary vertices only, create the planar shape in the calculated plane. Quote
lrm Posted November 17, 2020 Posted November 17, 2020 Given a set of 3D points you could determine the equation of a least squares fit plane using an approach outlined here (I like method #2). Once you have the equation of the plane you could project the “boundary vertices” to the plane and use a 3dpoly to connect them or set a UCS to the plane and create a polyline Quote
pkenewell Posted November 17, 2020 Posted November 17, 2020 (edited) Perhaps this? https://www.cadtutor.net/forum/topic/43813-build-an-average-line-from-a-family-of-points/?do=findComment&comment=404674 EDIT: sorry sent the wrong link - updated. EDIT: Or this? https://www.cadtutor.net/forum/topic/41839-how-to-find-a-best-fit-arc-for-a-set-of-points/?do=findComment&comment=518518 Edited November 17, 2020 by pkenewell Quote
BIGAL Posted November 18, 2020 Posted November 18, 2020 Lrm "Laser planning farm fields" a big industry for the farming community. Quote
lrm Posted November 18, 2020 Posted November 18, 2020 I created the attached Excel file to calculate the best fit plane to a set of 3D points. It uses the Least Squares Fit method so it minimizes the error in the z direction. It is good for planes that are not too inclined from the xy plane. Vertical planes are a problem. @ibach if this fulfills the first part of your request I could enhance it to project specified points to the plane. point cloud 1.zip Quote
ibach Posted November 23, 2020 Author Posted November 23, 2020 Hard working forum... Thank you all. I need some time to try all this. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.