| Added Methods |
ArrayList<Integer> findCorners(List<Double>, double, double)
|
Finds corners in the provided point list, and returns their indices. |
BezierPath fitBezierPath(Double[], double)
|
Fits a bezier path to the specified list of digitized points. |
BezierPath fitBezierPath(List<Double>, double)
|
Fits a bezier path to the specified list of digitized points. |
BezierPath fitBezierPath(BezierPath, double)
|
Fits a bezier path to the specified list of digitized points. |
ArrayList<Double> reduceNoise(List<Double>, double)
|
Reduces noise from the digitized points, by applying an approximation
of a gaussian filter to the data. |
ArrayList<Double> removeClosePoints(List<Double>, double)
|
Removes points which are closer together than the specified minimal
distance. |
ArrayList<ArrayList<Double>> splitAtCorners(List<Double>, double, double)
|
Splits the digitized points into multiple segments at each corner point. |