Package cz.fidentis.analyst.engines.face
Enum Class FaceDistanceServices.DistanceAggregation
java.lang.Object
java.lang.Enum<FaceDistanceServices.DistanceAggregation>
cz.fidentis.analyst.engines.face.FaceDistanceServices.DistanceAggregation
- All Implemented Interfaces:
Serializable
,Comparable<FaceDistanceServices.DistanceAggregation>
,Constable
- Enclosing interface:
FaceDistanceServices
public static enum FaceDistanceServices.DistanceAggregation
extends Enum<FaceDistanceServices.DistanceAggregation>
Strategies to combine distances from face A to B and vice versa into
a single-value similarity measurement.
See A Modified Hausdorff Distance for Object Matching
for more details.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionStandard Hausdorff distance, i.e., max(max, max)Chamfer distance, i.e., (avg + avg)Mean distance, i.e., (avg + avg) / 2Modified Hausdorff distance, i.e., max(avg, avg), that performs best for object's identification. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HAUSDORFF
Standard Hausdorff distance, i.e., max(max, max) -
MEAN
Mean distance, i.e., (avg + avg) / 2 -
MODIFIED_HAUSDORFF
Modified Hausdorff distance, i.e., max(avg, avg), that performs best for object's identification. -
CHAMFER
Chamfer distance, i.e., (avg + avg)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-