Class FaceImageInfo.FeaturePoint

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    FaceImageInfo

    public static class FaceImageInfo.FeaturePoint
    extends java.lang.Object
    implements java.io.Serializable
    Feature points as described in Section 5.6.3 of ISO/IEC FCD 19794-5.
    Version:
    $Revision: 1808 $
    Author:
    The JMRTD team ([email protected])
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      FeaturePoint​(int type, int majorCode, int minorCode, int x, int y)
      Constructs a new feature point.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getMajorCode()
      Returns the major code of this point.
      int getMinorCode()
      Returns the minor code of this point.
      int getType()
      Returns the type of this point.
      int getX()
      Returns the X-coordinate of this point.
      int getY()
      Returns the Y-coordinate of this point.
      java.lang.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

      • FeaturePoint

        public 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()
        Returns the major code of this point.
        Returns:
        major code
      • getMinorCode

        public int getMinorCode()
        Returns the minor code of this point.
        Returns:
        minor code
      • getType

        public int getType()
        Returns the type of this point.
        Returns:
        type
      • getX

        public int getX()
        Returns the X-coordinate of this point.
        Returns:
        X-coordinate
      • getY

        public int getY()
        Returns the Y-coordinate of this point.
        Returns:
        Y-coordinate
      • toString

        public java.lang.String toString()
        Generates a textual representation of this point.
        Overrides:
        toString in class java.lang.Object
        Returns:
        a textual representation of this point
        See Also:
        Object.toString()