e677. 模糊化图像
Posted borter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e677. 模糊化图像相关的知识,希望对你有一定的参考价值。
This example demonstrates a 3x3 kernel that blurs an image.
Kernel kernel = new Kernel(3, 3, new float[] { 1f/9f, 1f/9f, 1f/9f, 1f/9f, 1f/9f, 1f/9f, 1f/9f, 1f/9f, 1f/9f}); BufferedImageOp op = new ConvolveOp(kernel); bufferedImage = op.filter(bufferedImage, null);
Related Examples |
以上是关于e677. 模糊化图像的主要内容,如果未能解决你的问题,请参考以下文章