Enum ShapeMatchingMethod
Specifies the available shape comparison methods.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum ShapeMatchingMethod : int
Fields
Name | Description |
---|---|
MatchI1 | Specifies that the match should be computed as I2(A,B) = sum{i}(|1/miA - 1/miB|). mi = sign(hi).log(hi) where hi is the ith Hu moment. |
MatchI2 | Specifies that the match should be computed as I2(A,B) = sum{i}(|miA - miB|). mi = sign(hi).log(hi) where hi is the ith Hu moment. |
MatchI3 | Specifies that the match should be computed as I2(A,B) = sum{i}(|miA - miB| / |miA|). mi = sign(hi).log(hi) where hi is the ith Hu moment. |