| Package | Description |
|---|---|
| org.jaitools.media.jai.kernel |
Classes to create and manipulate JAI Kernel objects
|
| Modifier and Type | Method and Description |
|---|---|
static KernelFactory.ValueType |
KernelFactory.ValueType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KernelFactory.ValueType[] |
KernelFactory.ValueType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static javax.media.jai.KernelJAI |
KernelFactory.createAnnulus(int outerRadius,
int innerRadius,
KernelFactory.ValueType type)
Creates an annular kernel (a doughnut).
|
static javax.media.jai.KernelJAI |
KernelFactory.createAnnulus(int outerRadius,
int innerRadius,
KernelFactory.ValueType type,
float centreValue)
Deprecated.
Please use
KernelFactory.createAnnulus(int, int, ValueType) instead and
set the centre element value on the returned kernel if that is
required. |
static javax.media.jai.KernelJAI |
KernelFactory.createCircle(int radius,
KernelFactory.ValueType type)
Creates a circular kernel with width
2*radius + 1. |
static javax.media.jai.KernelJAI |
KernelFactory.createCircle(int radius,
KernelFactory.ValueType type,
float centreValue)
Deprecated.
Please use
KernelFactory.createCircle(int, ValueType) instead and
set the centre element value on the returned kernel if that is
required. |
static javax.media.jai.KernelJAI |
KernelFactory.createFromShape(Shape shape,
AffineTransform transform,
KernelFactory.ValueType type,
int keyX,
int keyY,
float keyValue)
Create a kernel by rasterizing a shape.
|
static javax.media.jai.KernelJAI |
KernelFactory.createRectangle(int width,
int height,
KernelFactory.ValueType type,
int keyX,
int keyY)
Creates a rectangular kernel.
|
static javax.media.jai.KernelJAI |
KernelFactory.createRectangle(int width,
int height,
KernelFactory.ValueType type,
int keyX,
int keyY,
float keyValue)
Deprecated.
Please use
KernelFactory.createRectangle(int, int, ValueType, int, int)
instead and set the centre element value on the returned kernel if that is
required. |
Copyright © 2009–2020. All rights reserved.