Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
|
Functions | |
Vector< size_t > | BSplineKnot (size_t vertices, size_t order) |
Computes and returns the knots for the given spline. More... | |
Vector< float > | BSplineBasis (const Vector< size_t > &knot, size_t order, float parameter, size_t vertices) |
Computes and returs the basis for this spline. More... | |
Matrix< float > | BSpline (const Matrix< float > &vertex, const Vector< size_t > &points, size_t order) |
Computes and returs B-spline matrix with given order and dimensions, from a set of vertices. More... | |
Matrix< float > Bial::Curve::BSpline | ( | const Matrix< float > & | vertex, |
const Vector< size_t > & | points, | ||
size_t | order | ||
) |
Computes and returs B-spline matrix with given order and dimensions, from a set of vertices.
vertices | Number of spline vertices in a dimension. |
points | number of points of the output in each dimension. |
order | Order of the B-spline. |
Vector< float > Bial::Curve::BSplineBasis | ( | const Vector< size_t > & | knot, |
size_t | order, | ||
float | parameter, | ||
size_t | vertices | ||
) |
Computes and returs the basis for this spline.
knot | vector of knots in one dimension. |
order | Order of the B-spline. |
parameter | Basis parameter. |
vertex | set of vertices. |