Serialized Form
-
Package org.eclipse.imagen
-
Class BorderExtender
class BorderExtender extends Object implements Serializable -
Class BorderExtenderConstant
class BorderExtenderConstant extends BorderExtender implements Serializable-
Serialized Fields
-
constants
double[] constants
-
-
-
Class BorderExtenderCopy
class BorderExtenderCopy extends BorderExtender implements Serializable -
Class BorderExtenderReflect
class BorderExtenderReflect extends BorderExtender implements Serializable -
Class BorderExtenderWrap
class BorderExtenderWrap extends BorderExtender implements Serializable -
Class BorderExtenderZero
class BorderExtenderZero extends BorderExtender implements Serializable -
Class CollectionChangeEvent
class CollectionChangeEvent extends PropertyChangeEventImageN implements Serializable -
Class ColorCube
class ColorCube extends LookupTableImageN implements Serializable-
Serialized Fields
-
adjustedOffset
int adjustedOffset
An offset into the lookup table, accounting for negative dimensions. -
dataType
int dataType
The data type cached to accelerate findNearestEntry(). -
dimension
int[] dimension
The signed array of sizes used to create theColorCube. -
dimsLessOne
int[] dimsLessOne
An array of positive values each of whose elements is one less than the absolute value of the corresponding element of the dimension array. -
multipliers
int[] multipliers
An array of multipliers.The magnitudes of the elements of the multiplier array are defined as
multipliers[0] = 1andmultipliers[i] = multipliers[i-1]*Math.abs(dimension[i-1])wherei > 0. The elements are subsequently assigned the same sign (positive or negative) as the corresponding elements of the dimension array. -
numBands
int numBands
The number of bands cached to accelerate findNearestEntry().
-
-
-
Class ColorSpaceImageN
class ColorSpaceImageN extends ColorSpace implements Serializable-
Serialized Fields
-
isRGBPreferredIntermediary
boolean isRGBPreferredIntermediary
Whether conversion to/from thisColorSpaceImageNis more efficient using the sRGB methods.
-
-
-
Class DeferredData
class DeferredData extends Observable implements Serializable-
Serialized Fields
-
dataClass
Class dataClass
The class of the wrapped data.
-
-
-
Class DeferredProperty
class DeferredProperty extends DeferredData implements Serializable-
Serialized Fields
-
propertyName
String propertyName
The name of the property the value of which is to be obtained.
-
-
-
Class EnumeratedParameter
class EnumeratedParameter extends Object implements Serializable-
Serialized Fields
-
name
String name
-
value
int value
-
-
-
Class Histogram
class Histogram extends Object implements Serializable-
Serialized Fields
-
bins
int[][] bins
The bins for each band, used to hold the pixel counts. -
binWidth
double[] binWidth
The width of a bin for each band. -
highValue
double[] highValue
The highest exclusive pixel value of the image checked for each band. -
lowValue
double[] lowValue
The lowest inclusive pixel value of the image checked for each band. -
mean
double[] mean
The mean value over all bins for each band. -
numBands
int numBands
The number of bands of the image from which the histogram is accumulated. This is the same as the number of bands of the bins (bins.length). -
numBins
int[] numBins
The number of bins used for each band of the image. -
totals
int[] totals
The total bin count over all bins for each band.
-
-
-
Class IHSColorSpace
class IHSColorSpace extends ColorSpaceImageN implements Serializable -
Class ImageLayout
class ImageLayout extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize theImageLayout.- Throws:
IOExceptionClassNotFoundException
-
writeObject
- Throws:
IOException
-
-
Serialized Fields
-
height
int height
The image's height. -
minX
int minX
The image's minimum X coordinate. -
minY
int minY
The image's minimum Y coordinate. -
tileGridXOffset
int tileGridXOffset
The X coordinate of tile (0, 0). -
tileGridYOffset
int tileGridYOffset
The Y coordinate of tile (0, 0). -
tileHeight
int tileHeight
The height of a tile. -
tileWidth
int tileWidth
The width of a tile. -
validMask
int validMask
The 'or'-ed together valid bitmasks. -
width
int width
The image'swidth.
-
-
-
Class Interpolation
class Interpolation extends Object implements Serializable-
Serialized Fields
-
bottomPadding
int bottomPadding
The number of pixels lying below the interpolation kernel key position. -
height
int height
The height of the interpolation kernel in pixels. -
leftPadding
int leftPadding
The number of pixels lying to the left of the interpolation kernel key position. -
rightPadding
int rightPadding
The number of pixels lying to the right of the interpolation kernel key position. -
subsampleBitsH
int subsampleBitsH
The numbers of bits used for the horizontal subsample position. This value determines how integer fractional positons are to be interpreted. -
subsampleBitsV
int subsampleBitsV
The number of bits used for the vertical subsample position. This value determines how integer fractional positons are to be interpreted. -
topPadding
int topPadding
The number of pixels lying above the interpolation kernel key position. -
width
int width
The width of the interpolation kernel in pixels.
-
-
-
Class InterpolationBicubic
class InterpolationBicubic extends InterpolationTable implements Serializable -
Class InterpolationBicubic2
class InterpolationBicubic2 extends InterpolationTable implements Serializable -
Class InterpolationBilinear
class InterpolationBilinear extends Interpolation implements Serializable-
Serialized Fields
-
one
int one
The value of 1.0 scaled by 2^subsampleBits -
round
int round
The value of 0.5 scaled by 2^subsampleBits -
round2
int round2
The value of 0.5 scaled by 2^shift2 -
shift
int shift
The number of bits to shift integer pixels to account for subsampleBits -
shift2
int shift2
Twice the value of 'shift'. Accounts for accumulated scaling shifts in two-axis interpolation
-
-
-
Class InterpolationNearest
class InterpolationNearest extends Interpolation implements Serializable -
Class InterpolationTable
class InterpolationTable extends Interpolation implements Serializable-
Serialized Fields
-
dataHd
double[] dataHd
The horizontal coefficient data in double format. -
dataHf
float[] dataHf
The horizontal coefficient data in floating-point format. -
dataHi
int[] dataHi
The horizontal coefficient data in fixed-point format. -
dataVd
double[] dataVd
The vertical coefficient data in double format. -
dataVf
float[] dataVf
The vertical coefficient data in floating-point format. -
dataVi
int[] dataVi
The vertical coefficient data in fixed-point format. -
numSubsamplesH
int numSubsamplesH
The number of horizontal subpixel positions within a pixel. -
numSubsamplesV
int numSubsamplesV
The number of vertical subpixel positions within a pixel. -
precisionBits
int precisionBits
The number of fractional bits used to describe filter coefficients. -
round
int round
The scaled (by 2precisionBits) value of 0.5 for rounding
-
-
-
Class KernelImageN
class KernelImageN extends Object implements Serializable-
Serialized Fields
-
data
float[] data
The kernel data in row-major format. -
dataH
float[] dataH
The horizontal data for a separable kernel -
dataV
float[] dataV
The vertical data for a separable kernel -
height
int height
The height of the kernel. -
isHorizontallySymmetric
boolean isHorizontallySymmetric
True if the kernel has horizontal (Y axis) symmetry. -
isSeparable
boolean isSeparable
True if the kernel is separable. -
isVerticallySymmetric
boolean isVerticallySymmetric
True if the kernel has vertical (X axis) symmetry. -
rotatedKernel
KernelImageN rotatedKernel
Variable to cache a copy of the rotated kernel -
width
int width
The width of the kernel. -
xOrigin
int xOrigin
The X coordinate of the key element. -
yOrigin
int yOrigin
The Y coordinate of the key element.
-
-
-
Class LookupTableImageN
class LookupTableImageN extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize theLookupTableImageN.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theLookupTableImageN.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
Serialized Fields
-
tableOffsets
int[] tableOffsets
The band offset values
-
-
-
Class NotAColorSpace
class NotAColorSpace extends ColorSpace implements Serializable -
Class OperationDescriptorImpl
class OperationDescriptorImpl extends Object implements Serializable-
Serialized Fields
-
deprecated
boolean deprecated
-
modeIndices
CaselessStringArrayTable modeIndices
ACaselessStringArrayTablemapping the mode names to their indices in the above arrays in a case-insensitive manner. -
name
String name
The global name of this operation. -
paramListDescriptors
ParameterListDescriptor[] paramListDescriptors
An array ofParameterListDescriptorfor each mode. -
paramNames
String[] paramNames
The array of parameter names. We need this because ParameterListDescriptor works only with parameter names and not parameter indices. But many of the deprecated methods and the validation of ParameterBlock has to happen through parameter indices. -
resources
String[][] resources
The resource tags and their corresponding data, stored as an two-dimensionalStringarray. -
sourceClasses
Class[][] sourceClasses
A 2D array of source classes for each source for each mode. sourceClasses[m][i] specifies theClassfor supportedModes[m] and sourceNames[i]. -
sourceIndices
CaselessStringArrayTable sourceIndices
ACaselessStringArrayTablemapping the source names to their indices in the above arrays in a case-insensitive manner. -
sourceNames
String[] sourceNames
An array ofStrings that are the names of the sources of this operation. The names must be listed in the order corresponding to the sourceClasses. -
supportedModes
String[] supportedModes
An array of operation modes supported by this operator. Must be a non-empty subset of "rendered", "renderable", "collection" and "renderableCollection" or other image operator modes to be defined later.
-
-
-
Class OperationNodeSupport
class OperationNodeSupport extends Object implements Serializable-
Serialization Methods
-
readObject
Deserializes theOperationNodeSupport.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serializes theOperationNodeSupport.- Throws:
IOException
-
-
Serialized Fields
-
eventManager
PropertyChangeSupportImageN eventManager
-
localPropEnv
Vector localPropEnv
Stores local property environment modifications sequentially as a PropertyGenerator, a String, or a CopyDirective depending on which local property environment mutator method was invoked. -
opName
String opName
-
paramObservers
Hashtable paramObservers
MapofParamObservers of instances ofDeferredDatain the parameterVector. -
registryModeName
String registryModeName
-
-
-
Class OperationRegistry
class OperationRegistry extends Object implements Externalizable-
Serialization Methods
-
readExternal
Restores the contents of the registry from an ObjectInput which was previously written using thewriteExternalmethod.All non-IO exceptions encountered while parsing the registry files are caught and their error messages are redirected to
System.err. IfSystem.erris null the error messages will never be seen.- Serial Data:
- The format of the data from the ObjectInput is expected to be the same as that written out by the
writeExternalmethod. For more information see serialized form. The current implementation is backward compatible with the old ImageN 1.0.2 registry file streams. - Parameters:
in- An ObjectInput from which to read the data.- Throws:
IllegalArgumentException- if in is null.IOExceptionClassNotFoundException- See Also:
-
writeExternal
Saves the contents of the registry as described in the serialized form.- Serial Data:
- The format of the data written to the stream is as follows. Each line in the stream can be in one of
the formats described below. Space or tab characters seperate keywords in each line. The comment character is
'#' (0x23); on each line all characters following the first comment character are ignored.
The stream must be encoded in UTF-8.
- To register descriptors :
descriptor {descriptor-class-name}
odesc {descriptor-class-name} {descriptor-name}
The second version above is deprecated and is retained for backward compatibility with ImageN 1.0.2. Descriptors are always registered against {descriptor-class}.getName(). The {descriptor-name} in the second version is always ignored.
- To register factory objects under a product against a specific mode :
{registry-mode-name} {factory-class-name} {product-name} {descriptor-name} {local-name}
{registry-mode-name} {factory-class-name} {descriptor-name}
The first version above is used to register factory objects against modes that support preferences. The second version is used for those that do not support preferences. {local-name}, is an arbitrary name that is unique for a given mode. This is (only) used later on in this file to set preferences between factory objects. See class comments for
OperationRegistryfor a discussion on product names. - To set preferences between products for a descriptor under a specific mode :
prefProduct {registry-mode-name} {descriptor-name} {preferred-product-name} {other-product-name}
pref product {descriptor-name} {preferred-product-name} {other-product-name}
The second version above is deprecated and is retained for backward compatibility with ImageN 1.0.2. This version is assumed to set product preferences for the "rendered" mode.
- To set preferences between factory objects for descriptor under a a specific product and registry mode
:
pref {registry-mode-name} {descriptor-name} {product-name} {preferred-factory-local-name} {other-factory-local-name}
For example, the stream contents for an "addconst" image operation descriptor might look like this :
descriptor org.eclipse.imagen.media.opimage.AddConstDescriptor rendered org.eclipse.imagen.media.opimage.AddConstCRIF org.eclipse.imagen.media addconst sunaddconstrif rendered org.eclipse.imagen.media.opimage.AddConstRIF2 org.eclipse.imagen.media addconst addconstrif2 renderable org.eclipse.imagen.media.opimage.AddConstCRIF addconst pref rendered addconst org.eclipse.imagen.media addconstrif2 sunaddconstrifThe above does the following :- register a descriptor for the "addconst" operator.
- registers two rendered image factories.
- register one renderable image factory.
- prefer the AddConstRIF2 factory over the AddConstCRIF factory for the rendered mode.
Note that ImageN 1.0.2 will not be able to read the new version of the registry file streams.
- To register descriptors :
- Parameters:
out- An ObjectOutput to which to write the data.- Throws:
IllegalArgumentException- if out is null.IOException
-
-
-
Class ParameterBlockImageN
class ParameterBlockImageN extends ParameterBlock implements Serializable-
Serialization Methods
-
readObject
Deserialize theParameterBlockImageN.- Throws:
IOExceptionNotSerializableException- if no OperationDescriptor is registered with the current OperationRegistry under the deserialized operation name.ClassNotFoundException
-
writeObject
Serialize theParameterBlockImageN.- Throws:
IOException
-
-
Serialized Fields
-
modeName
String modeName
The operation mode. -
numParameters
int numParameters
The number of parameters. Cached for convenience. -
paramClasses
Class[] paramClasses
The Class types of the parameters. -
paramIndices
CaselessStringArrayTable paramIndices
ACaselessStringArrayTableof parameter indices hashed byCaselessStringKeyversions of the parameter names. -
paramNames
String[] paramNames
The names of the parameters. Cached for convenience. -
pld
ParameterListDescriptor pld
The ParameterListDescriptor for the specific mode for the operator. -
sourceClasses
Class[] sourceClasses
The Class types of the sources. -
sourceIndices
CaselessStringArrayTable sourceIndices
ACaselessStringArrayTablesource indices hashed byCaselessStringKeyversions of the source names.
-
-
-
Class ParameterListDescriptorImpl
class ParameterListDescriptorImpl extends Object implements Serializable-
Serialized Fields
-
descriptor
Object descriptor
TheObjectto reflect upon for enumerated parameters. -
numParams
int numParams
The number of parameters in the list described by this parameter. -
paramClasses
Class[] paramClasses
TheClasstype of each parameter. There is one-to-one mapping between this andparamNames. -
paramDefaults
Object[] paramDefaults
The default values for of each parameter. There is one-to-one mapping between this andparamNames. If there is no default value for a given parameter, it is initialized withParameterListDescriptor.NO_PARAMETER_DEFAULT -
paramIndices
CaselessStringArrayTable paramIndices
ACaselessStringArrayTablemapping the parameter names to their indices in the above arrays in a case-insensitive manner. -
paramNames
String[] paramNames
The names of each parameter. -
validParamsInitialized
boolean validParamsInitialized
Indicates if thevalidParamValuesfield has been initialized. -
validParamValues
Object[] validParamValues
Defines the valid parameter values for each parameter.
-
-
-
Class ParameterListImpl
class ParameterListImpl extends Object implements Serializable-
Serialized Fields
-
paramClasses
Class[] paramClasses
The parameter classes obtained fromParameterListDescriptor -
paramIndices
CaselessStringArrayTable paramIndices
ACaselessStringArrayTableof parameter indices hashed byCaselessStringKeyversions of the names. -
paramValues
Object[] paramValues
Something to hold the parameter values. -
pld
ParameterListDescriptor pld
-
-
-
Class PropertyChangeEventImageN
class PropertyChangeEventImageN extends PropertyChangeEvent implements Serializable-
Serialized Fields
-
originalPropertyName
String originalPropertyName
The case-retained property name as supplied to the constructor.
-
-
-
Class PropertyChangeSupportImageN
class PropertyChangeSupportImageN extends PropertyChangeSupport implements Serializable-
Serialized Fields
-
propertyChangeEventSource
Object propertyChangeEventSource
ThePropertyChangeEventsource.
-
-
-
Class PropertySourceChangeEvent
class PropertySourceChangeEvent extends PropertyChangeEventImageN implements Serializable -
Class PropertySourceImpl
class PropertySourceImpl extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize the PropertySourceImpl.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize the PropertySourceImpl.- Throws:
IOException
-
-
Serialized Fields
-
cachedPropertyNames
Set cachedPropertyNames
CaselessStringKeys corresponding to the keys of entries inpropertieswhich derived their respective values from aPropertySourceinpropertySources.
-
-
-
Class RenderableOp
class RenderableOp extends Object implements Serializable-
Serialized Fields
-
eventManager
PropertyChangeSupportImageN eventManager
A helper object to manage firing events. -
nodeSupport
OperationNodeSupport nodeSupport
An object to assist in implementingOperationNode. -
properties
WritablePropertySourceImpl properties
A helper object to manage the image properties.
-
-
-
Class RenderedImageList
class RenderedImageList extends CollectionImage implements Serializable -
Class RenderedOp
class RenderedOp extends PlanarImage implements Serializable-
Serialization Methods
-
readObject
Deserialize theRenderedOp.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serializes theRenderedOp.- Throws:
IOException
-
-
Serialized Fields
-
isDisposed
boolean isDisposed
Whether dispose() has been invoked. -
nodeSupport
OperationNodeSupport nodeSupport
An object to assist in implementingOperationNode. -
synthProperties
Hashtable synthProperties
Synthesized properties.
-
-
-
Class RenderingChangeEvent
class RenderingChangeEvent extends PropertyChangeEventImageN implements Serializable-
Serialized Fields
-
invalidRegion
Shape invalidRegion
-
-
-
Class ROI
class ROI extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize theROI.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theROI.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
Serialized Fields
-
threshold
int threshold
The inclusion/exclusion threshold of the ROI.
-
-
-
Class ROIShape
class ROIShape extends ROI implements Serializable-
Serialization Methods
-
readObject
Deserialize theROIShape.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theROIShape.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class Warp
class Warp extends Object implements Serializable -
Class WarpAffine
class WarpAffine extends WarpPolynomial implements Serializable-
Serialized Fields
-
c1
float c1
-
c2
float c2
-
c3
float c3
-
c4
float c4
-
c5
float c5
-
c6
float c6
-
invc1
float invc1
-
invc2
float invc2
-
invc3
float invc3
-
invc4
float invc4
-
invc5
float invc5
-
invc6
float invc6
-
invTransform
AffineTransform invTransform
-
transform
AffineTransform transform
-
-
-
Class WarpCubic
class WarpCubic extends WarpPolynomial implements Serializable-
Serialized Fields
-
c1
float c1
-
c10
float c10
-
c11
float c11
-
c12
float c12
-
c13
float c13
-
c14
float c14
-
c15
float c15
-
c16
float c16
-
c17
float c17
-
c18
float c18
-
c19
float c19
-
c2
float c2
-
c20
float c20
-
c3
float c3
-
c4
float c4
-
c5
float c5
-
c6
float c6
-
c7
float c7
-
c8
float c8
-
c9
float c9
-
-
-
Class WarpGeneralPolynomial
class WarpGeneralPolynomial extends WarpPolynomial implements Serializable -
Class WarpGrid
class WarpGrid extends Warp implements Serializable-
Serialized Fields
-
xEnd
int xEnd
-
xNumCells
int xNumCells
-
xStart
int xStart
-
xStep
int xStep
-
xWarpPos
float[] xWarpPos
-
yEnd
int yEnd
-
yNumCells
int yNumCells
-
yStart
int yStart
-
yStep
int yStep
-
yWarpPos
float[] yWarpPos
-
-
-
Class WarpPolynomial
class WarpPolynomial extends Warp implements Serializable-
Serialized Fields
-
degree
int degree
The degree of the polynomial, determined by the number of coefficients supplied via the X and Y coefficients arrays. -
postScaleX
float postScaleX
A scaling factor applied to the result of the X polynomial evaluation which compensates for the input scaling, so that the correctly scaled result is obtained. -
postScaleY
float postScaleY
A scaling factor applied to the result of the Y polynomial evaluation which compensates for the input scaling, so that the correctly scaled result is obtained. -
preScaleX
float preScaleX
A scaling factor applied to input (dest) x coordinates to improve computational accuracy. -
preScaleY
float preScaleY
A scaling factor applied to input (dest) y coordinates to improve computational accuracy. -
xCoeffs
float[] xCoeffs
An array of coefficients that maps a destination point to the source's X coordinate. -
yCoeffs
float[] yCoeffs
An array of coefficients that maps a destination point to the source's Y coordinate.
-
-
-
Class WarpQuadratic
class WarpQuadratic extends WarpPolynomial implements Serializable-
Serialized Fields
-
c1
float c1
-
c10
float c10
-
c11
float c11
-
c12
float c12
-
c2
float c2
-
c3
float c3
-
c4
float c4
-
c5
float c5
-
c6
float c6
-
c7
float c7
-
c8
float c8
-
c9
float c9
-
-
-
Class WritablePropertySourceImpl
class WritablePropertySourceImpl extends PropertySourceImpl implements Serializable-
Serialized Fields
-
manager
PropertyChangeSupportImageN manager
Helper object for bean-style property events. Its default value isnullwhich indicates that no events are to be fired.
-
-
-
-
Package org.eclipse.imagen.media
-
Class ConcurrentOperationRegistry
class ConcurrentOperationRegistry extends OperationRegistry implements Externalizable-
Serialization Methods
-
readExternal
- Parameters:
in- An ObjectInput from which to read the data.- Throws:
IOExceptionClassNotFoundException- See Also:
-
writeExternal
- Parameters:
out- An ObjectOutput to which to write the data.- Throws:
IOException
-
-
-
-
Package org.eclipse.imagen.media.affine
-
Class AffineDescriptor
class AffineDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.algebra
-
Class AddDescriptor
class AddDescriptor extends OperationDescriptorImpl implements Serializable -
Class AlgebraDescriptor
class AlgebraDescriptor extends OperationDescriptorImpl implements Serializable -
Class AndDescriptor
class AndDescriptor extends OperationDescriptorImpl implements Serializable -
Class SubtractDescriptor
class SubtractDescriptor extends OperationDescriptorImpl implements Serializable -
Class XorDescriptor
class XorDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.algebra.constant
-
Class OperationConstDescriptor
class OperationConstDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.artifacts
-
Class ArtifactsFilterDescriptor
class ArtifactsFilterDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.bandcombine
-
Class BandCombineDescriptor
class BandCombineDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.bandmerge
-
Class BandMergeDescriptor
class BandMergeDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.bandselect
-
Class BandSelectDescriptor
class BandSelectDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- -8249015686542274642L
-
-
Package org.eclipse.imagen.media.binarize
-
Class BinarizeDescriptor
class BinarizeDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.border
-
Class BorderDescriptor
class BorderDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.buffer
-
Class BufferDescriptor
class BufferDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.clamp
-
Class ClampDescriptor
class ClampDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.classbreaks
-
Class ClassBreaksDescriptor
class ClassBreaksDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.classifier
-
Class ConstantColorMapElement
class ConstantColorMapElement extends LinearColorMapElement implements Serializable- serialVersionUID:
- -4754147707013696371L
-
Class LinearColorMapElement
class LinearColorMapElement extends DefaultLinearPiecewiseTransform1DElement implements Serializable- serialVersionUID:
- 2216106857184603629L
-
Serialized Fields
-
colors
Color[] colors
Colors associated to thisColorMapTransformElement. -
hashCode
int hashCode
-
-
Class RasterClassifierDescriptor
class RasterClassifierDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 7954257625240335874L
-
-
Package org.eclipse.imagen.media.colorconvert
-
Class ColorConvertDescriptor
class ColorConvertDescriptor extends OperationDescriptorImpl implements Serializable -
Class ColorSpaceImageNExt
class ColorSpaceImageNExt extends ColorSpaceImageN implements Serializable -
Class ColorSpaceImageNExtWrapper
class ColorSpaceImageNExtWrapper extends ColorSpaceImageNExt implements Serializable-
Serialized Fields
-
csImageN
ColorSpaceImageN csImageN
Input ColorSpace Provided -
csImageNExt
ColorSpaceImageNExt csImageNExt
Input Colorspace ColorSpaceImageNExt used if the input colorspace is ColorSpaceImageNExt -
isJAIExt
boolean isJAIExt
Boolean used for checking if the input ColorSpace is aColorSpaceImageNExtinstance
-
-
-
Class ColorSpaceJAIExtWrapper
class ColorSpaceJAIExtWrapper extends ColorSpaceImageNExtWrapper implements Serializable -
Class IHSColorSpaceImageNExt
class IHSColorSpaceImageNExt extends ColorSpaceImageNExt implements Serializable -
Class IHSColorSpaceJAIExt
class IHSColorSpaceJAIExt extends IHSColorSpaceImageNExt implements Serializable
-
-
Package org.eclipse.imagen.media.colorindexer
-
Class ColorIndexerDescriptor
class ColorIndexerDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 4951347100540806326L
-
-
Package org.eclipse.imagen.media.contour
-
Class ContourDescriptor
class ContourDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.convolve
-
Class ConvolveDescriptor
class ConvolveDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 1L
-
Class UnsharpMaskDescriptor
class UnsharpMaskDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.crop
-
Class CropDescriptor
class CropDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- -2995031215260355215L
-
-
Package org.eclipse.imagen.media.errordiffusion
-
Class ErrorDiffusionDescriptor
class ErrorDiffusionDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.format
-
Class FormatDescriptor
class FormatDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.imagefunction
-
Class ImageFunctionDescriptor
class ImageFunctionDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.imageread
-
Class ImageReadDescriptor
class ImageReadDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.interpolators
-
Class InterpolationBicubic
class InterpolationBicubic extends InterpolationTable implements Serializable- serialVersionUID:
- -3699824574811467489L
-
Serialized Fields
-
black
int black
This value is the destination NO DATA values for binary images -
dataType
int dataType
Image data Type -
destinationNoData
double destinationNoData
Destination NO DATA value used when the image pixel is outside of the ROI or is contained in the NO DATA range -
isBicubic2
boolean isBicubic2
-
isNotPointRange
boolean isNotPointRange
Boolean used for indicating that the No Data Range is not degenarated(useful only for NaN check inside Float or Double Range) -
noDataRange
Range noDataRange
Range of NO DATA values to be checked -
roiBounds
Rectangle roiBounds
ROI bounds used for checking the position of the pixel -
round
int round
The scaled (by 2precisionBits) value of 0.5 for rounding -
useROIAccessor
boolean useROIAccessor
Boolean for checking if the ROI Accessor must be used by the interpolator
-
-
Class InterpolationBilinear
class InterpolationBilinear extends Interpolation implements Serializable- serialVersionUID:
- 5238694001611785385L
-
Serialized Fields
-
black
int black
This value is the destination NO DATA values for binary images -
dataType
int dataType
Image data Type -
destinationNoData
double destinationNoData
Destination NO DATA value used when the image pixel is outside of the ROI or is contained in the NO DATA range -
isNotPointRange
boolean isNotPointRange
Boolean used for indicating that the No Data Range is not degenarated(useful only for NaN check inside Float or Double Range) -
noDataRange
Range noDataRange
Range of NO DATA values to be checked -
roiBounds
Rectangle roiBounds
ROI bounds used for checking the position of the pixel -
round
int round
The value of 0.5 scaled by 2^subsampleBits -
round2
int round2
The value of 0.5 scaled by 2^shift2 -
shift2
int shift2
Twice the value of 'shift'. Accounts for accumulated scaling shifts in two-axis interpolation -
subsampleBits
int subsampleBits
The number of bits to shift integer pixels to account for subsampleBits -
useROIAccessor
boolean useROIAccessor
Boolean for checking if the ROI Accessor must be used by the interpolator
-
-
Class InterpolationNearest
class InterpolationNearest extends Interpolation implements Serializable- serialVersionUID:
- -6994369085300227735L
-
Serialized Fields
-
black
int black
This value is the destination NO DATA values for binary images -
dataType
int dataType
Image data Type -
destinationNoData
double destinationNoData
Destination NO DATA value used when the image pixel is outside of the ROI or is contained in the NO DATA range -
isNotPointRange
boolean isNotPointRange
Boolean used for indicating that the No Data Range is not degenarated(useful only for NaN check inside Float or Double Range) -
noDataRange
Range noDataRange
Range of NO DATA values to be checked -
roiBounds
Rectangle roiBounds
ROI bounds used for checking the position of the pixel -
useROIAccessor
boolean useROIAccessor
Boolean for checking if the ROI Accessor must be used by the interpolator
-
-
-
Package org.eclipse.imagen.media.jiffle
-
Exception JiffleException
class JiffleException extends Exception implements Serializable
-
-
Package org.eclipse.imagen.media.jiffle.demo
-
Class GameOfLife
class GameOfLife extends JFrame implements Serializable-
Serialized Fields
-
activeRuntime
JiffleDirectRuntime activeRuntime
-
curWorld
TiledImage curWorld
-
edgeRuntime
JiffleDirectRuntime edgeRuntime
-
imagePane
SimpleImagePane imagePane
-
itemsDisabledWhenRunning
List<JComponent> itemsDisabledWhenRunning
-
nextWorld
TiledImage nextWorld
-
patterns
List<GameOfLife.PatternInfo> patterns
-
runExecutor
ScheduledExecutorService runExecutor
-
running
AtomicBoolean running
-
toroidRuntime
JiffleDirectRuntime toroidRuntime
-
worldType
GameOfLife.WorldType worldType
-
-
-
Class JiffleDemo
class JiffleDemo extends JFrame implements Serializable-
Serialized Fields
-
imageHeight
int imageHeight
-
imagePane
SimpleImagePane imagePane
-
imageWidth
int imageWidth
-
scriptPane
JTextArea scriptPane
-
splitPane
JSplitPane splitPane
-
-
-
-
Package org.eclipse.imagen.media.jiffle.parser
-
Exception InternalCompilerException
class InternalCompilerException extends IllegalStateException implements Serializable -
Exception JiffleParserException
class JiffleParserException extends RuntimeException implements Serializable -
Exception JiffleTypeException
class JiffleTypeException extends Exception implements Serializable -
Exception UndefinedFunctionException
class UndefinedFunctionException extends Exception implements Serializable -
Exception UndefinedOptionException
class UndefinedOptionException extends Exception implements Serializable -
Exception UnexpectedInputException
class UnexpectedInputException extends RuntimeException implements Serializable
-
-
Package org.eclipse.imagen.media.jiffle.parser.node
-
Exception NodeException
class NodeException extends Exception implements Serializable-
Serialized Fields
-
error
Errors error
-
-
-
-
Package org.eclipse.imagen.media.jiffle.runtime
-
Exception JiffleExecutorException
class JiffleExecutorException extends Exception implements Serializable -
Exception JiffleRuntimeException
class JiffleRuntimeException extends RuntimeException implements Serializable
-
-
Package org.eclipse.imagen.media.jiffleop
-
Class JiffleDescriptor
class JiffleDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.lookup
-
Class LookupDescriptor
class LookupDescriptor extends OperationDescriptorImpl implements Serializable -
Class LookupTable
class LookupTable extends LookupTableImageN implements Serializable-
Serialized Fields
-
destinationNoDataByte
byte destinationNoDataByte
Destination no data for Byte images -
destinationNoDataDouble
double destinationNoDataDouble
Destination no data for Double images -
destinationNoDataFloat
float destinationNoDataFloat
Destination no data for Float images -
destinationNoDataInt
int destinationNoDataInt
Destination no data for Integer images -
destinationNoDataShort
short destinationNoDataShort
Destination no data for Short/Ushort images -
hasNoData
boolean hasNoData
Boolean indicating if the image contains No Data values -
hasROI
boolean hasROI
Boolean indicating if the image contains a ROI -
noData
Range noData
Range object containing no data values -
roiBounds
Rectangle roiBounds
Rectangle containing roi bounds -
srcROIImage
PlanarImage srcROIImage
ROI image -
useROIAccessor
boolean useROIAccessor
Boolean indicating if Roi RasterAccessor must be used
-
-
-
Class LookupTableWrapper
class LookupTableWrapper extends LookupTable implements Serializable-
Serialized Fields
-
lut
LookupTableImageN lut
-
-
-
-
Package org.eclipse.imagen.media.mosaic
-
Class ImageMosaicBean
class ImageMosaicBean extends Object implements Serializable- serialVersionUID:
- -8333010416931087950L
-
Serialized Fields
-
alphaChannel
PlanarImage alphaChannel
-
image
RenderedImage image
-
rasterFormatTag
RasterFormatTag rasterFormatTag
-
roi
ROI roi
-
roiImage
RenderedImage roiImage
-
sourceNoData
Range sourceNoData
-
-
Class MosaicDescriptor
class MosaicDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 2718297230579888333L
-
Class MosaicType
class MosaicType extends EnumeratedParameter implements Serializable
-
-
Package org.eclipse.imagen.media.nullop
-
Class NullDescriptor
class NullDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.orderdither
-
Class OrderedDitherDescriptor
class OrderedDitherDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.piecewise
-
Class DefaultConstantPiecewiseTransformElement
class DefaultConstantPiecewiseTransformElement extends DefaultLinearPiecewiseTransform1DElement implements Serializable- serialVersionUID:
- 6704840161747974131L
-
Class DefaultDomainElement1D
class DefaultDomainElement1D extends Object implements Serializable- serialVersionUID:
- -2520449231656622013L
-
Serialized Fields
-
hashCode
int hashCode
-
inputMaximum
double inputMaximum
The maximal sample value (inclusive). This domain element is made of all values in the rangeinputMinimumtoinputMaximuminclusive. -
inputMaximumInf
boolean inputMaximumInf
Is uper input bound infinite? -
inputMaximumNaN
boolean inputMaximumNaN
Is upper input bound NaN? -
inputMinimum
double inputMinimum
The minimal sample value (inclusive). This domain element is made of all values in the rangeinputMinimumtoinputMaximuminclusive. -
inputMinimumInf
boolean inputMinimumInf
Is lower input bound infinite? -
inputMinimumNaN
boolean inputMinimumNaN
Is lower input bound NaN? -
name
String name
The domain element name. -
range
Range range
The range of values[inputMinimum..maximum]. May be computed only when first requested, or may be user-supplied .
-
-
Class DefaultLinearPiecewiseTransform1DElement
class DefaultLinearPiecewiseTransform1DElement extends DefaultPiecewiseTransform1DElement implements Serializable- serialVersionUID:
- 4026834241134908025L
-
Serialized Fields
-
outputMaximum
double outputMaximum
-
outputMaximumInfinite
boolean outputMaximumInfinite
-
outputMaximumNaN
boolean outputMaximumNaN
-
outputMinimum
double outputMinimum
-
outputMinimumInfinite
boolean outputMinimumInfinite
-
outputMinimumNaN
boolean outputMinimumNaN
-
outputRange
Range outputRange
-
-
Class DefaultPassthroughPiecewiseTransform1DElement
class DefaultPassthroughPiecewiseTransform1DElement extends DefaultPiecewiseTransform1DElement implements Serializable- serialVersionUID:
- -2420723761115130075L
-
Class DefaultPiecewiseTransform1DElement
class DefaultPiecewiseTransform1DElement extends DefaultDomainElement1D implements Serializable- serialVersionUID:
- 7422178060824402864L
-
Serialized Fields
-
hashCode
int hashCode
-
inverse
MathTransformation inverse
InverseMathTransformation -
transform
MathTransformation transform
The math transform
-
-
Class GenericPiecewiseDescriptor
class GenericPiecewiseDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 7954257625240335874L
-
Exception NoninvertibleTransformException
class NoninvertibleTransformException extends TransformationException implements Serializable- serialVersionUID:
- 1L
-
Exception TransformationException
class TransformationException extends Exception implements Serializable
-
-
Package org.eclipse.imagen.media.rescale
-
Class RescaleDescriptor
class RescaleDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.rlookup
-
Class RangeLookupDescriptor
class RangeLookupDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 6435703646431578734L
-
-
Package org.eclipse.imagen.media.scale
-
Class Scale2Descriptor
class Scale2Descriptor extends OperationDescriptorImpl implements Serializable -
Class ScaleDescriptor
class ScaleDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.serialize
-
Class ColorModelState
class ColorModelState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theColorModelState.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theColorModelState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class DataBufferState
class DataBufferState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theDataBufferState.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theDataBufferState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class HashSetState
class HashSetState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize the HashSetState.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize the HashSetState.- Throws:
IOException
-
-
-
Class HashtableState
class HashtableState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize the HashtableState.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize the HashtableState.- Throws:
IOException
-
-
-
Class InterfaceState
class InterfaceState extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize theInterfaceState.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theInterfaceState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class RasterState
class RasterState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theRasterState.- Parameters:
out- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theRasterState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class RenderContextState
class RenderContextState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theRenderContextState.- Parameters:
out- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theRenderContextState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class RenderingHintsState
class RenderingHintsState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize the RenderingHintsState.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize the RenderingHintsState.- Throws:
IOException
-
-
-
Class RenderingKeyState
class RenderingKeyState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
- Throws:
IOExceptionClassNotFoundException
-
writeObject
- Throws:
IOException
-
-
-
Class SampleModelState
class SampleModelState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theSampleModelState.- Parameters:
in- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theSampleModelState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class SerializableStateImpl
class SerializableStateImpl extends Object implements Serializable-
Serialized Fields
-
theClass
Class theClass
-
-
-
Class ShapeState
class ShapeState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize theShapeState.- Parameters:
out- TheObjectInputStream.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize theShapeState.- Parameters:
out- TheObjectOutputStream.- Throws:
IOException
-
-
-
Class VectorState
class VectorState extends SerializableStateImpl implements Serializable-
Serialization Methods
-
readObject
Deserialize the VectorState.- Throws:
IOExceptionClassNotFoundException
-
writeObject
Serialize the VectorState.- Throws:
IOException
-
-
-
-
Package org.eclipse.imagen.media.shadedrelief
-
Class ShadedReliefDescriptor
class ShadedReliefDescriptor extends OperationDescriptorImpl implements Serializable- serialVersionUID:
- 1L
-
-
Package org.eclipse.imagen.media.stats
-
Class HistogramWrapper
class HistogramWrapper extends Histogram implements Serializable -
Class StatisticsDescriptor
class StatisticsDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.swing
-
Class ImageFrame
class ImageFrame extends JFrame implements Serializable-
Serialized Fields
-
sb
StringBuilder sb
-
statusBar
JTextField statusBar
-
-
-
Class ProgressMeter
class ProgressMeter extends JFrame implements Serializable-
Serialized Fields
-
label
JLabel label
-
preset
boolean preset
-
progBar
JProgressBar progBar
-
-
-
Class SimpleImagePane
class SimpleImagePane extends JPanel implements Serializable-
Serialized Fields
-
displayToImage
AffineTransform displayToImage
-
image
RenderedImage image
-
imageToDisplay
AffineTransform imageToDisplay
-
lock
Object lock
-
margin
int margin
-
-
-
-
Package org.eclipse.imagen.media.threshold
-
Class ThresholdDescriptor
class ThresholdDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.translate
-
Class TranslateDescriptor
class TranslateDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.util
-
Class AreaOpPropertyGenerator
class AreaOpPropertyGenerator extends PropertyGeneratorImpl implements Serializable -
Class CaselessStringArrayTable
class CaselessStringArrayTable extends Object implements Serializable-
Serialized Fields
-
indices
Hashtable indices
-
keys
CaselessStringKey[] keys
-
-
-
Class CaselessStringKeyHashtable
class CaselessStringKeyHashtable extends Hashtable implements Serializable -
Class InterpAverage
class InterpAverage extends Interpolation implements Serializable -
Class PropertyGeneratorImpl
class PropertyGeneratorImpl extends Object implements Serializable -
Exception RWLock.LockNotHeld
class LockNotHeld extends RuntimeException implements Serializable -
Exception RWLock.UpgradeNotAllowed
class UpgradeNotAllowed extends RuntimeException implements Serializable
-
-
Package org.eclipse.imagen.media.utilities
-
Class ImageLayout2
class ImageLayout2 extends ImageLayout implements Serializable- serialVersionUID:
- -7921590012423277029L
-
-
Package org.eclipse.imagen.media.vectorbin
-
Class ROIGeometry
class ROIGeometry extends ROI implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
geomFactory
GeometryFactory geomFactory
-
hints
RenderingHints hints
-
roiImage
PlanarImage roiImage
Thread safe cache for the roi image -
testPoint
Point testPoint
-
testPointCS
CoordinateSequence testPointCS
-
testRect
Polygon testRect
-
testRectCS
CoordinateSequence testRectCS
-
theGeom
PreparedGeometry theGeom
TheGeometrythat defines the area of inclusion -
useAntialiasing
boolean useAntialiasing
-
useFixedPrecision
boolean useFixedPrecision
-
-
Class VectorBinarizeDescriptor
class VectorBinarizeDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.viewer
-
Class DisplayHistogram
class DisplayHistogram extends JComponent implements Serializable- serialVersionUID:
- -8640931037312978101L
-
Serialized Fields
-
backgroundColor
Color backgroundColor
-
barColor
Color barColor
-
binWidth
int binWidth
-
border
Insets border
-
counts
double[] counts
-
fontLarge
Font fontLarge
-
fontSmall
Font fontSmall
-
height
int height
-
indexMultiplier
int indexMultiplier
-
marksColor
Color marksColor
-
maxCount
double maxCount
-
skipIndexes
int skipIndexes
-
title
String title
-
verticalTicks
int verticalTicks
-
width
int width
-
-
Class HistogramPanel
class HistogramPanel extends JPanel implements Serializable -
Class ImageViewer
class ImageViewer extends JPanel implements Serializable-
Serialized Fields
-
display
ZoomableImageDisplay display
-
dpixel
double[] dpixel
-
hScrollBar
JScrollBar hScrollBar
-
image
RenderedImage image
-
ipixel
int[] ipixel
-
lastDirectory
File lastDirectory
-
pixelIter
RandomIter pixelIter
-
relatedViewer
ImageViewer relatedViewer
-
rescaleValues
JCheckBox rescaleValues
-
roiSync
JCheckBox roiSync
-
sb
StringBuffer sb
-
status
JLabel status
-
tileGrid
JCheckBox tileGrid
-
vScrollBar
JScrollBar vScrollBar
-
-
-
Class RenderedImageBrowser
class RenderedImageBrowser extends JPanel implements Serializable-
Serialized Fields
-
imageInfo
RenderedImageInfoPanel imageInfo
-
imageTree
JTree imageTree
-
model
ImageTreeModel model
-
showHistogram
boolean showHistogram
-
showRoi
boolean showRoi
-
split
JSplitPane split
-
-
-
Class RenderedImageInfoPanel
class RenderedImageInfoPanel extends JPanel implements Serializable-
Serialized Fields
-
generalPanel
JEditorPane generalPanel
-
histogramPanel
DisplayHistogram histogramPanel
-
operationPanel
JEditorPane operationPanel
-
propertiesPanel
JEditorPane propertiesPanel
-
roiViewer
ImageViewer roiViewer
-
showHistogram
boolean showHistogram
-
showRoi
boolean showRoi
-
tabs
JTabbedPane tabs
-
viewer
ImageViewer viewer
-
-
-
-
Package org.eclipse.imagen.media.warp
-
Class WarpDescriptor
class WarpDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.media.zonal
-
Class ZonalStatsDescriptor
class ZonalStatsDescriptor extends OperationDescriptorImpl implements Serializable
-
-
Package org.eclipse.imagen.operator
-
Class ColorQuantizerDescriptor
class ColorQuantizerDescriptor extends OperationDescriptorImpl implements Serializable -
Class ColorQuantizerType
class ColorQuantizerType extends EnumeratedParameter implements Serializable -
Class ConstantDescriptor
class ConstantDescriptor extends OperationDescriptorImpl implements Serializable -
Class FilteredSubsampleDescriptor
class FilteredSubsampleDescriptor extends OperationDescriptorImpl implements Serializable -
Class MaxFilterDescriptor
class MaxFilterDescriptor extends OperationDescriptorImpl implements Serializable -
Class MaxFilterShape
class MaxFilterShape extends EnumeratedParameter implements Serializable -
Class MedianFilterDescriptor
class MedianFilterDescriptor extends OperationDescriptorImpl implements Serializable -
Class MedianFilterShape
class MedianFilterShape extends EnumeratedParameter implements Serializable -
Class MinFilterDescriptor
class MinFilterDescriptor extends OperationDescriptorImpl implements Serializable -
Class MinFilterShape
class MinFilterShape extends EnumeratedParameter implements Serializable -
Class OverlayDescriptor
class OverlayDescriptor extends OperationDescriptorImpl implements Serializable -
Class PatternDescriptor
class PatternDescriptor extends OperationDescriptorImpl implements Serializable -
Class RenderableDescriptor
class RenderableDescriptor extends OperationDescriptorImpl implements Serializable -
Class ShearDir
class ShearDir extends EnumeratedParameter implements Serializable -
Class SubsampleAverageDescriptor
class SubsampleAverageDescriptor extends OperationDescriptorImpl implements Serializable -
Class TransposeDescriptor
class TransposeDescriptor extends OperationDescriptorImpl implements Serializable -
Class TransposeType
class TransposeType extends EnumeratedParameter implements Serializable
-
-
Package org.eclipse.imagen.util
-
Class CaselessStringKey
class CaselessStringKey extends Object implements Serializable -
Exception ImagingException
class ImagingException extends RuntimeException implements Serializable-
Serialized Fields
-
cause
Throwable cause
The cached cause.
-
-
-
Class Range
class Range extends Object implements Serializable-
Serialized Fields
-
elementClass
Class elementClass
-
isMaxIncluded
boolean isMaxIncluded
-
isMinIncluded
boolean isMinIncluded
-
maxValue
Comparable maxValue
-
minValue
Comparable minValue
-
-
-
-
Package org.jaitools.media.jai.vectorize
-
Class VectorizeDescriptor
class VectorizeDescriptor extends OperationDescriptorImpl implements Serializable
-