Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
|
Functions | |
Adjacency | Gray8 () |
Returns adjacency 8 with indexes ordered in such way that adjacent's indexes differ in one bit. More... | |
Adjacency | MarchingCube () |
Create and return a 3D box adjacency known as Marching Cube. More... | |
Adjacency | Circular (float radius=1.0) |
Create and return a 2D circular adjacency relation of radius 'radius'. More... | |
Adjacency | Elliptic (float x_radius=1.0, float y_radius=1.0) |
Create and return a 2D elliptic adjacency relation of radius 'radius'. More... | |
Adjacency | Spheric (float radius=1.0) |
Create and return a 3D spheric adjacency relation of radius 'radius'. More... | |
Adjacency | HyperSpheric (float radius=1.0, size_t dims=4) |
Create and return a hyper-spheric adjacency relation of radius 'radius' and with dim dimensions. More... | |
Adjacency | Ellipsoid (float x_radius=1.0, float y_radius=1.0, float z_radius=1.0) |
Create and return a 3D ellipsoid adjacency relation of radius 'radius'. More... | |
Adjacency | HyperEllipsoid (const Vector< float > &radius) |
Create and return a ND hyper ellipsoid adjacency relation of radii given by 'radius'. More... | |
Adjacency Bial::AdjacencyType::Circular | ( | float | radius = 1.0 | ) |
Create and return a 2D circular adjacency relation of radius 'radius'.
radius | the radius of the circular adjacency. |
Adjacency Bial::AdjacencyType::Ellipsoid | ( | float | x_radius = 1.0 , |
float | y_radius = 1.0 , |
||
float | z_radius = 1.0 |
||
) |
Create and return a 3D ellipsoid adjacency relation of radius 'radius'.
x_radius | the radius of the ellipsoid adjacency in axis x. |
y_radius | the radius of the ellipsoid adjacency in axis y. |
z_radius | the radius of the ellipsoid adjacency in axis z. |
Adjacency Bial::AdjacencyType::Elliptic | ( | float | x_radius = 1.0 , |
float | y_radius = 1.0 |
||
) |
Create and return a 2D elliptic adjacency relation of radius 'radius'.
x_radius | the radius of the elliptic adjacency in axis x. |
y_radius | the radius of the elliptic adjacency in axis y. |
Adjacency Bial::AdjacencyType::Gray8 | ( | ) |
Returns adjacency 8 with indexes ordered in such way that adjacent's indexes differ in one bit.
none. |
Create and return a ND hyper ellipsoid adjacency relation of radii given by 'radius'.
radius | vector with hyper ellipse radii. |
Adjacency Bial::AdjacencyType::HyperSpheric | ( | float | radius = 1.0 , |
size_t | dims = 4 |
||
) |
Create and return a hyper-spheric adjacency relation of radius 'radius' and with dim dimensions.
radius | The radius of the spheric adjacency. |
dims | The number of dimensions. |
Adjacency Bial::AdjacencyType::MarchingCube | ( | ) |
Adjacency Bial::AdjacencyType::Spheric | ( | float | radius = 1.0 | ) |
Create and return a 3D spheric adjacency relation of radius 'radius'.
radius | the radius of the spheric adjacency. |