Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
Bial::Heart Namespace Reference

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...
 

Function Documentation

template<class D >
Image< D > Bial::Heart::Segmentation ( const Image< D > &  img,
const std::string &  orientation 
)

Returns a binary mask of segmented heart.

Date
2014/Oct/14
Parameters
imgA heart image.
orientationImage orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples.
Returns
Binary mask of segmented heart.
Warning
none.
template<class D >
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.

Date
2014/Oct/14
Parameters
imgA heart image.
orientationImage orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples.
Returns
Vector with COG coordinates.
Warning
none.
template<class D >
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.

Date
2013/Aug/27
Parameters
imgA heart image.
orientationImage orientation. Must be a composition of three values containing: LR, RL, SI, IS, AP, or PA. Look for NiftiHeader::Orientation() function for examples.
best_rectanglesVector with best rectangles.
similarityImage with similarity of each center point.
Returns
Vector with COG coordinates.
Warning
none.