Class Blur
java.lang.Object
|
+--AbstractELOperator
|
+--OneArgumentOperator
|
+--Blur
- All Implemented Interfaces:
- ELOperator
- public class Blur
- extends OneArgumentOperator
- implements ELOperator
Constructor Summary |
Blur()
|
Blur(double blurPercent)
This constructor is useful when using blur to implement other
filters. |
Method Summary |
void |
apply(ELMatrix[] argument,
ELMatrix out,
ELEnvironment environment)
Applies this operator. |
java.lang.String |
description()
An english language description of what this operator does. |
(package private) static float[] |
gaussian(int numTaps)
Produces a set of numTaps gaussian filter coefficients. |
protected java.lang.String |
iconString()
Override to change the string painted for an icon. |
java.lang.String |
name()
Name of this operator (usually the same as unparse()). |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Blur
public Blur()
Blur
public Blur(double blurPercent)
- This constructor is useful when using blur to implement other
filters.
apply
public void apply(ELMatrix[] argument,
ELMatrix out,
ELEnvironment environment)
- Description copied from interface:
ELOperator
- Applies this operator.
- Specified by:
apply
in interface ELOperator
- Overrides:
apply
in class OneArgumentOperator
gaussian
static float[] gaussian(int numTaps)
- Produces a set of numTaps gaussian filter coefficients.
name
public java.lang.String name()
- Description copied from interface:
ELOperator
- Name of this operator (usually the same as unparse()).
- Specified by:
name
in interface ELOperator
description
public java.lang.String description()
- Description copied from interface:
ELOperator
- An english language description of what this operator does.
- Specified by:
description
in interface ELOperator
iconString
protected java.lang.String iconString()
- Description copied from class:
AbstractELOperator
- Override to change the string painted for an icon.
- Overrides:
iconString
in class AbstractELOperator