public abstract class Filter
extends java.lang.Object
| Constructor and Description |
|---|
Filter() |
| Modifier and Type | Method and Description |
|---|---|
abstract double |
output(double d)
output
Returns a filtered value related to the (double) @param d input
|
double[] |
output(double[] val)
output
Returns a filtered value related to the (double []) @param val input
|
Pixel |
output(Pixel p)
output
Returns a filtered value related to the (Pixel) @param p input
|
Pixel[] |
output(Pixel[] px)
output
Returns a filtered value related to the (Pixel []) @param px input
|
Point |
output(Point p)
output
Returns a filtered value related to the (Point) @param p input
|
Point[] |
output(Point[] pt)
output
Returns a filtered value related to the (Point []) @param pt input
|
public abstract double output(double d)
d - public double[] output(double[] val)
val - public Pixel[] output(Pixel[] px)
px - public Pixel output(Pixel p)
p - public Point output(Point p)
p -