Package | Description |
---|---|
org.openimaj.image.contour | |
org.openimaj.image.feature.astheticode |
Modifier and Type | Field and Description |
---|---|
Contour |
Contour.parent
The parent contour, might be null
|
Contour |
SuzukiContourProcessor.root
the root border detected
|
Modifier and Type | Field and Description |
---|---|
List<Contour> |
Contour.children
sub contours
|
Modifier and Type | Method and Description |
---|---|
static Contour |
SuzukiContourProcessor.findContours(FImage image)
Find contours in the given image and return the border
|
static Contour |
SuzukiContourProcessor.findContours(FImage image,
SuzukiContourProcessor proc)
Detect borders hierarchically in this binary image.
|
Modifier and Type | Method and Description |
---|---|
Iterable<Contour> |
Contour.contourIterable()
Get an
Iterable over all the contours belonging to this root
(including the root itself) |
Iterator<Contour> |
Contour.contourIterator()
Get an iterator over the complete set of contours (including the root
itself)
|
Modifier and Type | Method and Description |
---|---|
void |
ContourRenderer.drawContours(Contour root)
Draw the given contour.
|
static MBFImage |
ContourRenderer.drawContours(MBFImage imgC,
Contour root)
Utility function to quickly draw the contour to the image.
|
protected void |
Contour.setParent(Contour bp) |
Modifier and Type | Field and Description |
---|---|
Contour |
Aestheticode.root
The border object describing the shape of the code
|
Modifier and Type | Method and Description |
---|---|
List<Aestheticode> |
AestheticodeDetector.apply(Contour in) |
boolean |
AestheticodeDetector.test(Contour in) |
Constructor and Description |
---|
Aestheticode(Contour root)
Construct with a border
|