Uses of Class
georegression.struct.curve.ConicGeneral_F64
Packages that use ConicGeneral_F64
-
Uses of ConicGeneral_F64 in georegression.fitting.curves
Methods in georegression.fitting.curves with parameters of type ConicGeneral_F64Modifier and TypeMethodDescriptionboolean
FitConicA_F64.process
(List<Point2D_F64> points, double[] weights, ConicGeneral_F64 output) Fits the conic to the weighted set of points.boolean
FitConicA_F64.process
(List<Point2D_F64> points, ConicGeneral_F64 output) Fits the conic to the points.boolean
FitConicAtA_F64.process
(List<Point2D_F64> points, double[] weights, ConicGeneral_F64 output) Fits the conic to the weighted set of points.boolean
FitConicAtA_F64.process
(List<Point2D_F64> points, ConicGeneral_F64 output) Fits the conic to the points. -
Uses of ConicGeneral_F64 in georegression.geometry
Methods in georegression.geometry that return ConicGeneral_F64Modifier and TypeMethodDescriptionstatic ConicGeneral_F64
UtilCurves_F64.convert
(ParabolaGeneral_F64 src, @Nullable ConicGeneral_F64 dst) Converts the parabola into a conic.static ConicGeneral_F64
UtilCurves_F64.convert
(org.ejml.data.DMatrix3x3 src, @Nullable ConicGeneral_F64 dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F64
UtilCurves_F64.convert
(org.ejml.data.DMatrixRMaj src, @Nullable ConicGeneral_F64 dst) Converts symmetric 3x3 matrix back into a conic.Methods in georegression.geometry with parameters of type ConicGeneral_F64Modifier and TypeMethodDescriptionstatic ParabolaGeneral_F64
UtilCurves_F64.convert
(ConicGeneral_F64 src, @Nullable ParabolaGeneral_F64 dst) Converts the conic into a parabola.static org.ejml.data.DMatrix3x3
UtilCurves_F64.convert
(ConicGeneral_F64 src, @Nullable org.ejml.data.DMatrix3x3 dst) Converts the conic into a symmetric 3x3 matrixstatic org.ejml.data.DMatrixRMaj
UtilCurves_F64.convert
(ConicGeneral_F64 src, @Nullable org.ejml.data.DMatrixRMaj dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F64
UtilCurves_F64.convert
(ParabolaGeneral_F64 src, @Nullable ConicGeneral_F64 dst) Converts the parabola into a conic.static ConicGeneral_F64
UtilCurves_F64.convert
(org.ejml.data.DMatrix3x3 src, @Nullable ConicGeneral_F64 dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F64
UtilCurves_F64.convert
(org.ejml.data.DMatrixRMaj src, @Nullable ConicGeneral_F64 dst) Converts symmetric 3x3 matrix back into a conic. -
Uses of ConicGeneral_F64 in georegression.struct.curve
Subclasses of ConicGeneral_F64 in georegression.struct.curveModifier and TypeClassDescriptionclass
In general quadratic form, an ellipse is described by 6-coefficients:
F(x,y) = a*x^2 + 2*b*x*y + c*y^2 + 2*d*x + 2*e*y + f = 0
a*c - b*b > 0
where [a,b,c,d,e,f] are the coefficients and [x,y] is the coordinate of a point on the ellipse.Methods in georegression.struct.curve that return ConicGeneral_F64Modifier and TypeMethodDescriptionConicGeneral_F64.copy()
ConicGeneral_F64.setTo
(double a, double b, double c, double d, double e, double f) ConicGeneral_F64.setTo
(ConicGeneral_F64 original) Methods in georegression.struct.curve with parameters of type ConicGeneral_F64Constructors in georegression.struct.curve with parameters of type ConicGeneral_F64