Interface Point

  • All Known Implementing Classes:
    PointImpl

    public interface Point
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getScore()
      Gets the confidence score.
      double getX()
      Gets the value of the x-coordinate.
      double getY()
      Gets the value of the y-coordinate.
      boolean isAccurate()
      Evaluate if the estimation of the Point is accurate.
    • Method Detail

      • getX

        double getX()
        Gets the value of the x-coordinate.
        Returns:
        the x-coordinate.
      • getY

        double getY()
        Gets the value of the y-coordinate.
        Returns:
        the y-coordinate.
      • getScore

        double getScore()
        Gets the confidence score.
        Returns:
        the score.
      • isAccurate

        boolean isAccurate()
        Evaluate if the estimation of the Point is accurate.
        Returns:
        true if the estimation of the point is accurate.