摘要: using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.ComponentModel;using System.Diagnostics;namespace Ad... 阅读全文
posted @ 2014-12-13 11:51 天涯海客 阅读(2766) 评论(1) 推荐(0) 编辑
摘要: 转自:http://www.ruanyifeng.com/blog/2012/11/gaussian_blur.html通常,图像处理软件会提供"模糊"(blur)滤镜,使图片产生模糊的效果。"模糊"的算法有很多种,其中有一种叫做"高斯模糊"(Gaussian Blur)。它将正态分布(又名"高斯分... 阅读全文
posted @ 2014-12-13 11:26 天涯海客 阅读(346) 评论(1) 推荐(0) 编辑
摘要: /// /// 图像模糊化 /// /// 原始图像 /// 模糊化后的图像 public static Bitmap Blur(Bitmap bitmap, int radius, float sigma) { if (bitmap == null) { return null; } int ... 阅读全文
posted @ 2014-12-13 10:58 天涯海客 阅读(1590) 评论(0) 推荐(0) 编辑