Class ScalePoint

java.lang.Object
boofcv.struct.feature.ScalePoint
Direct Known Subclasses:
SiftDetector.SiftPoint

public class ScalePoint extends Object
Where a point of interest was detected and at what scale.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    float
    Feature intensity where it was selected
    location of interest point
    double
    The scale the feature was detected at.
    boolean
    does the blob correspond to a black or white region
  • Constructor Summary

    Constructors
    Constructor
    Description
     
    ScalePoint(double x, double y, double scale)
     
    ScalePoint(double x, double y, double scale, boolean white)
     
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    setTo(double x, double y, double scale)
     
    void
    setTo(double x, double y, double scale, boolean white)
     
    void
    setTo(double x, double y, double scale, boolean white, float intensity)
     
    void
     
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • pixel

      public final Point2D_F64 pixel
      location of interest point
    • scale

      public double scale
      The scale the feature was detected at. Exact meaning of "scale" is implementation dependent
    • white

      public boolean white
      does the blob correspond to a black or white region
    • intensity

      public float intensity
      Feature intensity where it was selected
  • Constructor Details

    • ScalePoint

      public ScalePoint(double x, double y, double scale)
    • ScalePoint

      public ScalePoint(double x, double y, double scale, boolean white)
    • ScalePoint

      public ScalePoint()
  • Method Details

    • setTo

      public void setTo(double x, double y, double scale)
    • setTo

      public void setTo(double x, double y, double scale, boolean white)
    • setTo

      public void setTo(double x, double y, double scale, boolean white, float intensity)
    • copy

      public ScalePoint copy()
    • setTo

      public void setTo(ScalePoint p)
    • toString

      public String toString()
      Overrides:
      toString in class Object