Uses of Class
georegression.struct.curve.ConicGeneral_F64
-
Uses of ConicGeneral_F64 in georegression.fitting.curves
Modifier 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
Modifier 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.Modifier 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
Modifier 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.Modifier 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)