Package | Description |
---|---|
org.openimaj.image.processor.connectedcomponent.render |
Modifier and Type | Field and Description |
---|---|
protected EnumSet<ConfigurableRenderOptions> |
ConfigurableRendererRGB.options
The options to draw with
|
protected EnumSet<ConfigurableRenderOptions> |
ConfigurableRendererMono.options
The options to draw with
|
Modifier and Type | Method and Description |
---|---|
static ConfigurableRenderOptions |
ConfigurableRenderOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurableRenderOptions[] |
ConfigurableRenderOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Float[] |
ConfigurableRendererRGB.getColour(ConfigurableRenderOptions r)
Get the colour that a specific option will be drawn in.
|
Float |
ConfigurableRendererMono.getColour(ConfigurableRenderOptions r)
Get the colour that a specific option will be drawn in.
|
void |
ConfigurableRendererMono.setColour(ConfigurableRenderOptions r,
Float colour)
Set the colour of a specific option to override the default.
|
void |
ConfigurableRendererRGB.setColour(ConfigurableRenderOptions r,
Float[] colour)
Set the colour of a specific option to override the default.
|
Constructor and Description |
---|
ConfigurableRendererMono(EnumSet<ConfigurableRenderOptions> options)
Protected constructor that takes a set of options to draw.
|
ConfigurableRendererMono(FImage image,
EnumSet<ConfigurableRenderOptions> options)
Constructor that takes an image to draw into and a set of options to draw.
|
ConfigurableRendererMono(int width,
int height,
EnumSet<ConfigurableRenderOptions> options)
Constructor that creates an image to draw into and takes a set of options
to draw.
|
ConfigurableRendererRGB(EnumSet<ConfigurableRenderOptions> options)
Protected constructor that takes a set of options to draw.
|
ConfigurableRendererRGB(int rows,
int cols,
EnumSet<ConfigurableRenderOptions> options)
Constructor that creates an image to draw into and takes a set of options
to draw.
|
ConfigurableRendererRGB(MBFImage image,
EnumSet<ConfigurableRenderOptions> options)
Constructor that takes an image to draw into and a set of options to draw.
|