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 > | COG (const Image< D > &img) |
Computes the coordenates of the center of gravity of the input image. More... | |
template<class D > | |
void | Complement (Image< D > &img) |
Inverts the intensity of each pixel of image img using its maximum value, i.e., data[ x ] = ( data[ x ] + 1 ) % 2. More... | |
template<class D > | |
void | Complement (Image< D > &img, const Image< D > &msk) |
Same as Complement( img ), but restricted to the pixels of msk image which intensities are not zero. More... | |
Computes the coordenates of the center of gravity of the input image.
A | binary image. |
void Bial::Binary::Complement | ( | Image< D > & | img | ) |
Inverts the intensity of each pixel of image img using its maximum value, i.e., data[ x ] = ( data[ x ] + 1 ) % 2.
img | A binary image. |