pub trait AlignMTBConst: AlignExposuresConst {
    fn as_raw_AlignMTB(&self) -> *const c_void;

    fn get_max_bits(&self) -> Result<i32> { ... }
    fn get_exclude_range(&self) -> Result<i32> { ... }
    fn get_cut(&self) -> Result<bool> { ... }
}
Expand description

This algorithm converts images to median threshold bitmaps (1 for pixels brighter than median luminance and 0 otherwise) and than aligns the resulting bitmaps using bit operations.

It is invariant to exposure, so exposure values and camera response are not necessary.

In this implementation new image regions are filled with zeros.

For more information see GW03 .

Required Methods

Provided Methods

Implementors