码迷,mamicode.com
首页 > 其他好文 > 详细

e678. 尖锐化图像

时间:2018-09-02 23:46:09      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:strong   this   arp   str   image   amp   col   ima   float   

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. 尖锐化图像

标签:strong   this   arp   str   image   amp   col   ima   float   

原文地址:https://www.cnblogs.com/borter/p/9575568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!