http://www.emgu.com
Create an AlignMTB object
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic AlignMTB(
int maxBits = 6,
int excludeRange = 4,
bool cut = true
)
Public Sub New (
Optional maxBits As Integer = 6,
Optional excludeRange As Integer = 4,
Optional cut As Boolean = true
)
public:
AlignMTB(
int maxBits = 6,
int excludeRange = 4,
bool cut = true
)
new :
?maxBits : int *
?excludeRange : int *
?cut : bool
(* Defaults:
let _maxBits = defaultArg maxBits 6
let _excludeRange = defaultArg excludeRange 4
let _cut = defaultArg cut true
*)
-> AlignMTB
Parameters
- maxBits (Optional)
- Type: SystemInt32
logarithm to the base 2 of maximal shift in each dimension. Values of 5 and 6 are usually good enough (31 and 63 pixels shift respectively). - excludeRange (Optional)
- Type: SystemInt32
range for exclusion bitmap that is constructed to suppress noise around the median value. - cut (Optional)
- Type: SystemBoolean
if true cuts images, otherwise fills the new regions with zeros.
See Also