AlignMTB
Objective-C
@interface AlignMTB : AlignExposures
Swift
class AlignMTB : AlignExposures
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 CITE: GW03 .
Member of Photo
-
Calculates shift between two images, i. e. how to shift the second image to correspond it with the first.
Declaration
Parameters
img0
first image
img1
second image
-
Declaration
Objective-C
- (BOOL)getCut NS_SWIFT_NAME(getCut());
Swift
func getCut() -> Bool
-
Declaration
Objective-C
- (int)getExcludeRange NS_SWIFT_NAME(getExcludeRange());
Swift
func getExcludeRange() -> Int32
-
Declaration
Objective-C
- (int)getMaxBits NS_SWIFT_NAME(getMaxBits());
Swift
func getMaxBits() -> Int32
-
Declaration
Objective-C
- (void)setCut:(BOOL)value NS_SWIFT_NAME(setCut(value:));
Swift
func setCut(value: Bool)
-
Declaration
Objective-C
- (void)setExcludeRange:(int)exclude_range NS_SWIFT_NAME(setExcludeRange(exclude_range:));
Swift
func setExcludeRange(exclude_range: Int32)
-
Declaration
Objective-C
- (void)setMaxBits:(int)max_bits NS_SWIFT_NAME(setMaxBits(max_bits:));
Swift
func setMaxBits(max_bits: Int32)