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. 模糊化图像的主要内容,如果未能解决你的问题,请参考以下文章

论文:页脚模糊化

OpenCV---圆检测

Android毛玻璃模糊化效果处理

13:图像模糊处理

人工智能学习——模糊控制

用matlab 如何将图片模糊处理