Package boofcv.struct.feature
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
intensity
Feature intensity where it was selectedPoint2D_F64
pixel
location of interest pointdouble
scale
The scale the feature was detected at.boolean
white
does the blob correspond to a black or white region -
Constructor Summary
Constructors Constructor Description ScalePoint()
ScalePoint(double x, double y, double scale)
ScalePoint(double x, double y, double scale, boolean white)
-
Method Summary
Modifier and Type Method Description ScalePoint
copy()
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
setTo(ScalePoint p)
String
toString()
-
Field Details
-
pixel
location of interest point -
scale
public double scaleThe scale the feature was detected at. Exact meaning of "scale" is implementation dependent -
white
public boolean whitedoes the blob correspond to a black or white region -
intensity
public float intensityFeature 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