JMRTD 0.4.5

org.jmrtd.lds
Class FaceInfo.FeaturePoint

java.lang.Object
  extended by org.jmrtd.lds.FaceInfo.FeaturePoint
Enclosing class:
FaceInfo

public static class FaceInfo.FeaturePoint
extends Object

Feature points as described in Section 5.6.3 of ISO/IEC FCD 19794-5.

Version:
$Revision: 1208 $
Author:
Martijn Oostdijk (martijn.oostdijk@gmail.com)

Constructor Summary
FaceInfo.FeaturePoint(int type, int majorCode, int minorCode, int x, int y)
          Constructs a new feature point.
 
Method Summary
 int getMajorCode()
          Gets the major code of this point.
 int getMinorCode()
          Gets the minor code of this point.
 int getType()
          Gets the type of this point.
 int getX()
          Gets the X-coordinate of this point.
 int getY()
          Gets the Y-coordinate of this point.
 String toString()
          Generates a textual representation of this point.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FaceInfo.FeaturePoint

public FaceInfo.FeaturePoint(int type,
                             int majorCode,
                             int minorCode,
                             int x,
                             int y)
Constructs a new feature point.

Parameters:
type - feature point type
majorCode - major code
minorCode - minor code
x - X-coordinate
y - Y-coordinate
Method Detail

getMajorCode

public int getMajorCode()
Gets the major code of this point.

Returns:
major code

getMinorCode

public int getMinorCode()
Gets the minor code of this point.

Returns:
minor code

getType

public int getType()
Gets the type of this point.

Returns:
type

getX

public int getX()
Gets the X-coordinate of this point.

Returns:
X-coordinate

getY

public int getY()
Gets the Y-coordinate of this point.

Returns:
Y-coordinate

toString

public String toString()
Generates a textual representation of this point.

Overrides:
toString in class Object
Returns:
a textual representation of this point
See Also:
Object.toString()

JMRTD 0.4.5