Uses of Class
georegression.struct.curve.ConicGeneral_F32
-
Uses of ConicGeneral_F32 in georegression.fitting.curves
Modifier and TypeMethodDescriptionboolean
FitConicA_F32.process
(List<Point2D_F32> points, float[] weights, ConicGeneral_F32 output) Fits the conic to the weighted set of points.boolean
FitConicA_F32.process
(List<Point2D_F32> points, ConicGeneral_F32 output) Fits the conic to the points.boolean
FitConicAtA_F32.process
(List<Point2D_F32> points, float[] weights, ConicGeneral_F32 output) Fits the conic to the weighted set of points.boolean
FitConicAtA_F32.process
(List<Point2D_F32> points, ConicGeneral_F32 output) Fits the conic to the points. -
Uses of ConicGeneral_F32 in georegression.geometry
Modifier and TypeMethodDescriptionstatic ConicGeneral_F32
UtilCurves_F32.convert
(ParabolaGeneral_F32 src, @Nullable ConicGeneral_F32 dst) Converts the parabola into a conic.static ConicGeneral_F32
UtilCurves_F32.convert
(org.ejml.data.FMatrix3x3 src, @Nullable ConicGeneral_F32 dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F32
UtilCurves_F32.convert
(org.ejml.data.FMatrixRMaj src, @Nullable ConicGeneral_F32 dst) Converts symmetric 3x3 matrix back into a conic.Modifier and TypeMethodDescriptionstatic ParabolaGeneral_F32
UtilCurves_F32.convert
(ConicGeneral_F32 src, @Nullable ParabolaGeneral_F32 dst) Converts the conic into a parabola.static org.ejml.data.FMatrix3x3
UtilCurves_F32.convert
(ConicGeneral_F32 src, @Nullable org.ejml.data.FMatrix3x3 dst) Converts the conic into a symmetric 3x3 matrixstatic org.ejml.data.FMatrixRMaj
UtilCurves_F32.convert
(ConicGeneral_F32 src, @Nullable org.ejml.data.FMatrixRMaj dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F32
UtilCurves_F32.convert
(ParabolaGeneral_F32 src, @Nullable ConicGeneral_F32 dst) Converts the parabola into a conic.static ConicGeneral_F32
UtilCurves_F32.convert
(org.ejml.data.FMatrix3x3 src, @Nullable ConicGeneral_F32 dst) Converts symmetric 3x3 matrix back into a conic.static ConicGeneral_F32
UtilCurves_F32.convert
(org.ejml.data.FMatrixRMaj src, @Nullable ConicGeneral_F32 dst) Converts symmetric 3x3 matrix back into a conic. -
Uses of ConicGeneral_F32 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_F32.copy()
ConicGeneral_F32.setTo
(float a, float b, float c, float d, float e, float f) ConicGeneral_F32.setTo
(ConicGeneral_F32 original)