See: Description
Interface | Description |
---|---|
IImageEffectListener |
This interface should be implemented by all classes that listen to the completion of
an Image Effect rendering process.
|
IInterpolated<T> |
Interface to define the methods for interpolation classes.
|
IParameter |
Interface that an image or video effect parameter should implement.
|
IThreadListener |
This interface should be implemented by all classes that listen to the current progress or the
end of the execution of a thread.
|
IVideo |
Interface that video object have to implement.
|
IVideoEffectListener |
This interface should be implemented by all classes that listen to a processing video effect or are waiting
for the end of the execution of a video effect.
|
Class | Description |
---|---|
BooleanParameter |
Represents an image or video effect parameter that has a boolean value.
|
ColorParameter |
Represents an image or video effect parameter that has a color value.
|
DoubleParameter |
Represents an image or video effect parameter that has a double value.
|
EffectParameters |
Abstract class implementing basic methods for the specific effect parameter classes.
|
ImageEffect |
Abstract class defining the interface for image effects and
implementing helping methods that are valid for all image effects.
|
ImageSequence |
The class implements the access to the single frames of an image sequence.
|
IntegerParameter |
Represents an image or video effect parameter that has an integer value.
|
InterpolatedColor |
An extension of the
Color class that allows to calculate interpolated color values. |
InterpolatedDouble |
Provides interpolation methods for double values.
|
InterpolatedInteger |
Provides interpolation methods for integer values.
|
InterpolationContainer<E extends IInterpolated<E>> |
Manages a list of objects that can be interpolated.
|
LinearTransitionProperties | |
ObjectParameter |
Represents an image or video effect parameter that has a an arbitrary object as value.
|
OptionParameter |
Represents an image or video effect parameter that can have several options as values.
|
ThreadEventManager |
All classes that need to notify thread listener objects should extend this class and use its functionality.
|
VideoEffect |
Abstract class defining the interface for video effects and
implementing helping methods that are valid for all video effects.
|