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

e679. 浮雕化图像

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

标签: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

e679. 浮雕化图像

标签:span   null   ffffff   float   enter   lsp   str   sse   amp   

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

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