Enum Class BatchFaceRegistrationServices.RegistrationStrategy
java.lang.Object
java.lang.Enum<BatchFaceRegistrationServices.RegistrationStrategy>
cz.fidentis.analyst.engines.face.batch.registration.BatchFaceRegistrationServices.RegistrationStrategy
- All Implemented Interfaces:
Serializable
,Comparable<BatchFaceRegistrationServices.RegistrationStrategy>
,Constable
- Enclosing class:
BatchFaceRegistrationServices
public static enum BatchFaceRegistrationServices.RegistrationStrategy
extends Enum<BatchFaceRegistrationServices.RegistrationStrategy>
Strategies of registration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse Generalized Procrustes Analysis (more precisely superimposition) to mutually align the same landmarks.Use Iterative Closets Point algorithm to mutually align mesh vertices.Skip registration (i.e., compute the average face only for already registered faces) -
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
-
NONE
Skip registration (i.e., compute the average face only for already registered faces) -
GPA
Use Generalized Procrustes Analysis (more precisely superimposition) to mutually align the same landmarks. Landmarks are required. -
ICP
Use Iterative Closets Point algorithm to mutually align mesh vertices. No landmarks are required.
-
-
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
-