Package | Description |
---|---|
org.openimaj.image | |
org.openimaj.image.renderer | |
org.openimaj.math.geometry.line | |
org.openimaj.math.geometry.path |
Modifier and Type | Method and Description |
---|---|
void |
Image.drawLine(Path2d line,
int thickness,
Q col)
Draw a line from the specified Path2d object
|
void |
Image.drawPath(Path2d line,
int thickness,
Q col)
Draw a line from the specified Path2d object
|
Modifier and Type | Method and Description |
---|---|
void |
Image.drawLines(Iterable<? extends Path2d> lines,
int thickness,
Q col)
Draw the given list of lines using
Image.drawLine(Path2d, int, Object)
with the given colour and thickness. |
void |
Image.drawPaths(Iterable<? extends Path2d> lines,
int thickness,
Q col)
Draw the given list of paths using
Image.drawLine(Path2d, int, Object)
with the given colour and thickness. |
Modifier and Type | Method and Description |
---|---|
void |
ImageRenderer.drawLine(Path2d line,
int thickness,
Q col)
Draw a line from the specified
Path2d object |
void |
ImageRenderer.drawPath(Path2d path,
int thickness,
Q col)
Draw a path from the specified
Path2d object |
Modifier and Type | Method and Description |
---|---|
void |
ImageRenderer.drawLines(Iterable<? extends Path2d> lines,
int thickness,
Q col)
Draw the given list of lines using
ImageRenderer.drawLine(Path2d, int, Object)
with the given colour and thickness. |
void |
ImageRenderer.drawPaths(Iterable<? extends Path2d> paths,
int thickness,
Q col)
Draw the given list of lines using
ImageRenderer.drawLine(Path2d, int, Object)
with the given colour and thickness. |
Modifier and Type | Class and Description |
---|---|
class |
Line2d
A line in two-dimensional space.
|
Modifier and Type | Class and Description |
---|---|
class |
Polyline
|