Package boofcv.struct
Class PointGradient_F64
java.lang.Object
georegression.struct.GeoTuple<T>
georegression.struct.GeoTuple_F64<T>
georegression.struct.GeoTuple2D_F64<Point2D_F64>
georegression.struct.point.Point2D_F64
boofcv.struct.PointGradient_F64
- All Implemented Interfaces:
Serializable
Data structure for a point coordinate and the gradient at that location
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptiondouble
Image gradient at this locationdouble
Image gradient at this locationFields inherited from class georegression.struct.GeoTuple2D_F64
x, y
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncopy()
void
setTo
(double x, double y, double dx, double dy) void
setTo
(PointGradient_F64 orig) Methods inherited from class georegression.struct.point.Point2D_F64
createNewInstance, setTo, toString
Methods inherited from class georegression.struct.GeoTuple2D_F64
_setTo, distance, distance, distance2, distance2, equals, getDimension, getIdx, getX, getY, hashCode, isIdentical, isIdentical, isIdentical, isNaN, norm, normSq, plus, plusIP, print, scale, setIdx, setTo, setX, setY, times, timesIP, toString, zero
Methods inherited from class georegression.struct.GeoTuple_F64
isInfinite
-
Field Details
-
dx
public double dxImage gradient at this location -
dy
public double dyImage gradient at this location
-
-
Constructor Details
-
PointGradient_F64
public PointGradient_F64(double x, double y, double dx, double dy) -
PointGradient_F64
-
PointGradient_F64
public PointGradient_F64()
-
-
Method Details
-
setTo
-
setTo
public void setTo(double x, double y, double dx, double dy) -
copy
- Overrides:
copy
in classPoint2D_F64
-