e678. 尖锐化图像

Posted borter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e678. 尖锐化图像相关的知识,希望对你有一定的参考价值。

This example demonstrates a 3x3 kernel that sharpens an image.

    Kernel kernel = new Kernel(3, 3,
        new float[] {
            -1, -1, -1,
            -1, 9, -1,
            -1, -1, -1});
    BufferedImageOp op = new ConvolveOp(kernel);
    bufferedImage = op.filter(bufferedImage, null);

 

Related Examples

以上是关于e678. 尖锐化图像的主要内容,如果未能解决你的问题,请参考以下文章

图像锐化算法(Image sharpening):拉普拉斯增强和Unsharp Masking(附代码)

图像锐化算法(Image sharpening):拉普拉斯增强和Unsharp Masking(附代码)

MATLAB-图像锐化(空域与频域)

Python图像锐化及边缘检测(RobertsPrewittSobelLapllacianCannyLOG)

MATLAB-图像锐化(空域与频域)

MATLAB-图像锐化(空域与频域)