http://www.emgu.com
Create LATCH descriptor extractor
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic LATCH(
int bytes = 32,
bool rotationInvariance = true,
int halfSsdSize = 3
)
Public Sub New (
Optional bytes As Integer = 32,
Optional rotationInvariance As Boolean = true,
Optional halfSsdSize As Integer = 3
)
public:
LATCH(
int bytes = 32,
bool rotationInvariance = true,
int halfSsdSize = 3
)
new :
?bytes : int *
?rotationInvariance : bool *
?halfSsdSize : int
(* Defaults:
let _bytes = defaultArg bytes 32
let _rotationInvariance = defaultArg rotationInvariance true
let _halfSsdSize = defaultArg halfSsdSize 3
*)
-> LATCH
Parameters
- bytes (Optional)
- Type: SystemInt32
The size of the descriptor - can be 64, 32, 16, 8, 4, 2 or 1 - rotationInvariance (Optional)
- Type: SystemBoolean
Whether or not the descriptor should compensate for orientation changes. - halfSsdSize (Optional)
- Type: SystemInt32
the size of half of the mini-patches size. For example, if we would like to compare triplets of patches of size 7x7x
then the half_ssd_size should be (7-1)/2 = 3.
See Also