Uses of Class
imagingbook.common.geometry.line.AlgebraicLine
Packages that use AlgebraicLine
Package
Description
-
Uses of AlgebraicLine in imagingbook.common.geometry.fitting.line
Methods in imagingbook.common.geometry.fitting.line that return AlgebraicLineModifier and TypeMethodDescriptiondefault AlgebraicLine
LineFit.getLine()
Returns theAlgebraicLine
associated with this line fit. -
Uses of AlgebraicLine in imagingbook.common.geometry.hulls
Methods in imagingbook.common.geometry.hulls that return AlgebraicLineModifier and TypeMethodDescriptionAxisAlignedBoundingBox.getBoundingLines()
Returns an array of fourAlgebraicLine
instances which coincide with the outline of the bounding box. -
Uses of AlgebraicLine in imagingbook.common.geometry.line
Subclasses of AlgebraicLine in imagingbook.common.geometry.lineModifier and TypeClassDescriptionclass
This class represents a straight line in Hessian normal form, i.e., x * cos(angle) + y * sin(angle) = radius.class
This class represents a line in slope-intercept form: y = k x + d.Methods in imagingbook.common.geometry.line that return AlgebraicLineModifier and TypeMethodDescriptionstatic AlgebraicLine
AlgebraicLine.from
(double[] s, double[] v) Creates a newAlgebraicLine
instance from a given start point and orientation vector.static AlgebraicLine
Creates a newAlgebraicLine
instance from two given points.static AlgebraicLine
AlgebraicLine.from
(ParametricLine pl) Creates a newAlgebraicLine
instance from a givenParametricLine
.static AlgebraicLine
AlgebraicLine.from
(SlopeInterceptLine sil) Creates a newAlgebraicLine
instance from a givenSlopeInterceptLine
.Methods in imagingbook.common.geometry.line with parameters of type AlgebraicLineModifier and TypeMethodDescriptionboolean
AlgebraicLine.equals
(AlgebraicLine other, double tolerance) Checks if thisAlgebraicLine
is equal to anotherAlgebraicLine
.static ParametricLine
ParametricLine.from
(AlgebraicLine al) AlgebraicLine.intersect
(AlgebraicLine l2) Finds the intersection point between this line and anotherAlgebraicLine
.Constructors in imagingbook.common.geometry.line with parameters of type AlgebraicLine -
Uses of AlgebraicLine in imagingbook.common.hough
Subclasses of AlgebraicLine in imagingbook.common.houghModifier and TypeClassDescriptionclass
This class represents a straight line of the form (x - xRef) * cos(angle) + (y - yRef) * sin(angle) = radius.Constructors in imagingbook.common.hough with parameters of type AlgebraicLineModifierConstructorDescriptionHoughLine
(AlgebraicLine line) Convenience constructor, creates a newHoughLine
instance from a givenAlgebraicLine
(or any subclass) instance with the same reference point as the original line and zero count.HoughLine
(AlgebraicLine line, double xRef, double yRef, int count) Constructor, creates a newHoughLine
instance from a givenAlgebraicLine
(or any subclass) instance.