75         const bool smooth_halves = 
true, 
const bool convert_grayscale = 
false);
    84         const bool smooth_halves = 
true, 
const bool convert_grayscale = 
false);
    93     std::vector<mrpt::img::CImage> 
images;
 
Holds and builds a pyramid of images: starting with an image at full resolution (octave=1), it builds a number of half-resolution images: octave=2 at 1/2 , octave=3 at 1/2^2, octave=N at 1/2^(N-1). 
 
std::vector< mrpt::img::CImage > images
The individual images: 
 
Classes for computer vision, detectors, features, etc. 
 
bool buildPyramidFast(mrpt::img::CImage &img, const size_t nOctaves, const bool smooth_halves=true, const bool convert_grayscale=false)
Exactly like buildPyramid(), but if the input image has not to be converted from RGB to grayscale...
 
A class for storing images as grayscale or RGB bitmaps. 
 
bool buildPyramid(const mrpt::img::CImage &img, const size_t nOctaves, const bool smooth_halves=true, const bool convert_grayscale=false)
Fills the vector images with the different octaves built from the input image.