![]() |
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 > | |
| Vector< size_t > | WeightedCOG (const Image< D > &img, const std::string &orientation) |
| Returns a Vector with COG coordinates, based on intensity weighted values of the image and distance from the top of the head. More... | |
| template<class D > | |
| Vector< size_t > | WeightedCOG (const Image< D > &img, const std::string &orientation, Vector< Box > &best_rectangles, Image< float > &similarity) |
| Returns a Vector with COG coordinates, based on intensity weighted values of the image and distance from the top of the head. More... | |
| template<class D > | |
| Image< D > | Segmentation (const Image< D > &img, const std::string &orientation) |
| Returns a binary mask of segmented heart. More... | |
| Image< D > Bial::Heart::Segmentation | ( | const Image< D > & | img, |
| const std::string & | orientation | ||
| ) |
Returns a binary mask of segmented heart.
| img | A heart image. |
| orientation | Image orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples. |
| Vector< size_t > Bial::Heart::WeightedCOG | ( | const Image< D > & | img, |
| const std::string & | orientation | ||
| ) |
Returns a Vector with COG coordinates, based on intensity weighted values of the image and distance from the top of the head.
| img | A heart image. |
| orientation | Image orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples. |
| Vector< size_t > Bial::Heart::WeightedCOG | ( | const Image< D > & | img, |
| const std::string & | orientation, | ||
| Vector< Box > & | best_rectangles, | ||
| Image< float > & | similarity | ||
| ) |
Returns a Vector with COG coordinates, based on intensity weighted values of the image and distance from the top of the head.
| img | A heart image. |
| orientation | Image orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples. |
| best_rectangles | Vector with best rectangles. |
| similarity | Image with similarity of each center point. |