![]() |
Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
|
Functions | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | LazyWalk (const Image< D > &img, const Vector< bool > &seed) |
| Computes the lazy-walk algorithm. More... | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | LazyWalk (const Image< D > &img, const Image< D > &msk, const Vector< bool > &seed) |
| Computes the lazy-walk algorithm. More... | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | RiverBed (const Image< D > &img, const Vector< bool > &seed) |
| Computes the river-bed algorithm. More... | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | RiverBed (const Image< D > &img, const Image< D > &msk, const Vector< bool > &seed) |
| Computes the river-bed algorithm. More... | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | LiveWire (const Image< D > &img, const Vector< bool > &seed, float weight) |
| Computes the live-wire algorithm. More... | |
| template<class D > | |
| std::tuple< Image< D >, Image< int > > | LiveWire (const Image< D > &img, const Image< D > &msk, const Vector< bool > &seed, float weight) |
| Computes the live-wire algorithm. More... | |
| std::tuple< Image< D >, Image< int > > Bial::Edge::LazyWalk | ( | const Image< D > & | img, |
| const Vector< bool > & | seed | ||
| ) |
Computes the lazy-walk algorithm.
| img | Input image. |
| seed | Seeds for propagation start. |
| std::tuple< Image< D >, Image< int > > Bial::Edge::LazyWalk | ( | const Image< D > & | img, |
| const Image< D > & | msk, | ||
| const Vector< bool > & | seed | ||
| ) |
Computes the lazy-walk algorithm.
| img | Input image. |
| msk | Mask that restricts the domain of the algorithm on pixels whose value are different of 0. |
| seed | Seeds for propagation start. |
| std::tuple< Image< D >, Image< int > > Bial::Edge::LiveWire | ( | const Image< D > & | img, |
| const Vector< bool > & | seed, | ||
| float | weight | ||
| ) |
Computes the live-wire algorithm.
| img | Input image. |
| seed | Seeds for propagation start. |
| weight | MaxSumPathfunction weight. Lower values for results more similar to Riverbed. |
| Higher | values for results more similar to River Bed. |
| std::tuple< Image< D >, Image< int > > Bial::Edge::LiveWire | ( | const Image< D > & | img, |
| const Image< D > & | msk, | ||
| const Vector< bool > & | seed, | ||
| float | weight | ||
| ) |
Computes the live-wire algorithm.
| img | Input image. |
| msk | Mask that restricts the domain of the algorithm on pixels whose value are different of 0. |
| seed | Seeds for propagation start. |
| weight | MaxSumPathfunction weight. Lower values for results more similar to Riverbed. |
| Higher | values for results more similar to River Bed. |
| std::tuple< Image< D >, Image< int > > Bial::Edge::RiverBed | ( | const Image< D > & | img, |
| const Vector< bool > & | seed | ||
| ) |
Computes the river-bed algorithm.
| img | Input inverted gradient image. |
| seed | Seeds for propagation start. |
| std::tuple< Image< D >, Image< int > > Bial::Edge::RiverBed | ( | const Image< D > & | img, |
| const Image< D > & | msk, | ||
| const Vector< bool > & | seed | ||
| ) |
Computes the river-bed algorithm.
| img | Input image. |
| msk | Mask that restricts the domain of the algorithm on pixels whose value are different of 0. |
| seed | Seeds for propagation start. |