码迷,mamicode.com
首页 > 编程语言 > 详细

高斯模糊的Java实现

时间:2018-04-06 23:52:53      阅读:370      评论:0      收藏:0      [点我收藏+]

标签:ssi   div   图片   return   throw   new   static   filters   模糊   

1、http://jhlabs.com/ip/index.html

public static byte[] blur(byte[] data) throws IOException {
        ByteArrayInputStream bais = new ByteArrayInputStream(data);
        BufferedImage img = ImageIO.read(bais);
        GaussianFilter gaussianFilter = new GaussianFilter();
        gaussianFilter.filter(img, img);
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        ImageIO.write(img, "jpg", baos);
        return baos.toByteArray();
    } 

Maven地址:http://mvnrepository.com/artifact/com.jhlabs/filters

除了高斯模糊,这人还写了好多图片处理的filter,参见:http://jhlabs.com/ip/filters/index.html

2、

高斯模糊的Java实现

标签:ssi   div   图片   return   throw   new   static   filters   模糊   

原文地址:https://www.cnblogs.com/haitao-fan/p/8729091.html

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