Skip to content

Functions for 2D/3D points (plane fitting, transform estimation, polynomial fitting)

License

Notifications You must be signed in to change notification settings

aslze/aslpoints

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aslpoints

Simple experimental functions working on 2D and 3D point sets to fit planes, estimate geometric transforms, etc.

It is header-only currently. Requires the ASL 1.11.8+ library.

Currently available functions (may change in the future):

  • fitPlaneXY: fits a plane z = a x + b y + c to a set of 3D points and returns [a, b, c]

  • fitPlane: fits a plane to a set of 3D points and returns it as a point and normal

  • fitCircle: fits a circle to a set of 2D or 3D points

  • fitEllipse: fits an ellipse to a set of 2D points

  • findAffineTransform: Estimates the affine transform between two sets of 2D points

  • findRigidTransform: Estimates the rigid transform between two sets of 2D or 3D points

  • findHomography: Computes a perspective transform between two sets of 2D points

  • fitPoly: fits a polynomial y=f(x) of any degree to a set of 2D points and returns its coefficients

  • fitPoly: fits a bivariate polynomial z=f(x,y) to a set of 3D points and returns its coefficients

  • polynomial: evaluates a polynomial (single variable or bivariate)

Can easily be included using CMake in other projects where ASL is already. For example:

include(FetchContent)
FetchContent_Declare(aslpoints URL https://github.com/aslze/aslpoints/archive/1.2.zip)
FetchContent_MakeAvailable(aslpoints)
target_link_libraries(myprogram asls aslpoints)

About

Functions for 2D/3D points (plane fitting, transform estimation, polynomial fitting)

Topics

Resources

License

Stars

Watchers

Forks