Lines Matching defs:kernel
38 * Convolution using a convolution kernel is a spatial operation that
39 * computes the output pixel from an input pixel by multiplying the kernel
42 * in a way that can be mathematically specified with a kernel.
69 Kernel kernel;
92 * @param kernel the specified <code>Kernel</code>
100 public ConvolveOp(Kernel kernel, int edgeCondition, RenderingHints hints) {
101 this.kernel = kernel;
109 * @param kernel the specified <code>Kernel</code>
113 public ConvolveOp(Kernel kernel) {
114 this.kernel = kernel;
133 return (Kernel) kernel.clone();