标签:span null ffffff float enter lsp str sse amp
This example demonstrates a 3x3 kernel that embosses an image.
Kernel kernel = new Kernel(3, 3, new float[] { -2, 0, 0, 0, 1, 0, 0, 0, 2}); BufferedImageOp op = new ConvolveOp(kernel); bufferedImage = op.filter(bufferedImage, null);
Related Examples |
标签:span null ffffff float enter lsp str sse amp
原文地址:https://www.cnblogs.com/borter/p/9575514.html