资源简介
C#语言、VS2005,包括噪声模型、均值滤波与中值滤波、灰度形态学滤波、小波变换去噪、高斯低通滤波、统计滤波
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace smooth
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void open_Click(object sender EventArgs e)
{
OpenFileDialog opnDlg = new OpenFileDialog();
opnDlg.Filter = “所有图像文件 | *.bmp; *.pcx; *.png; *.jpg; *.gif;“ +
“*.tif; *.ico; *.dxf; *.cgm; *.cdr; *.wmf; *.eps; *.emf|“ +
“位图( *.bmp; *.jpg; *.png;...) | *.bmp; *.pcx; *.png; *.jpg; *.gif; *.tif; *.ico|“ +
“矢量图( *.wmf; *.eps; *.emf;...) | *.dxf; *.cgm; *.cdr; *.wmf; *.eps; *.emf“;
opnDlg.title = “打开图像文件“;
opnDlg.ShowHelp = true;
if (opnDlg.ShowDialog() == DialogResult.OK)
{
curFileName = opnDlg.FileName;
try
{
curBitmap = (Bitmap)Image.FromFile(curFileName);
}
catch (Exception exp)
{
MessageBox.Show(exp.Message);
}
}
Invalidate();
}
private void close_Click(object sender EventArgs e)
{
this.Close();
}
private void Form1_Paint(object sender PaintEventArgs e)
{
Graphics g = e.Graphics;
if (curBitmap != null)
{
g.DrawImage(curBitmap 160 20 curBitmap.Width curBitmap.Height);
}
}
private void noise_Click(object sender EventArgs e)
{
if (curBitmap != null)
{
noiseModel noise = new noiseModel();
if (noise.ShowDialog() == DialogResult.OK)
{
Rectangle rect = new Rectangle(0 0 curBitmap.Width curBitmap.Height);
System.Drawing.Imaging.BitmapData bmpData = curBitmap.LockBits(rect System.Drawing.Imaging.ImageLockMode.ReadWrite curBitmap.PixelFormat);
IntPtr ptr = bmpData.Scan0;
int bytes = curBitmap.Width * curBitmap.Height;
byte[] grayValues = new byte[bytes];
System.Runtime.InteropServices.Marshal.Copy(ptr grayValues 0 bytes);
double temp = 0;
byte flagNoise = noise.GetFlag;
double[] paraNoise = new double[2];
paraNoise = noise.GetParaN;
Random r1 r2;
double v1 v2;
r1 = new Random(unchecked((int)DateTime.Now.Ticks));
r2 = new Random(~unchecked((int)DateTime.Now.Ticks));
for (int i = 0; i < bytes; i++)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1440054 2008-08-22 15:07 图像平滑与去噪\7\中值滤波结果.bmp
文件 381974 2008-08-22 11:26 图像平滑与去噪\7\噪声模型.bmp
文件 192550 2008-08-22 15:03 图像平滑与去噪\7\均值与中值.bmp
文件 1440054 2008-08-22 15:05 图像平滑与去噪\7\均值滤波结果.bmp
文件 798822 2008-03-01 11:15 图像平滑与去噪\7\小波分解.bmp
文件 41984 2008-02-02 16:53 图像平滑与去噪\7\小波变换.vsd
文件 1440054 2008-02-02 16:26 图像平滑与去噪\7\小波变换后图像.bmp
文件 432178 2008-08-23 14:07 图像平滑与去噪\7\小波变换对话框.bmp
文件 1440054 2008-08-22 11:22 图像平滑与去噪\7\指数噪声.bmp
文件 1440054 2008-01-24 10:53 图像平滑与去噪\7\椒盐噪声.bmp
文件 150654 2008-08-22 18:28 图像平滑与去噪\7\灰度形态学对话框.bmp
文件 1440054 2008-08-22 18:29 图像平滑与去噪\7\灰度形态学滤波.bmp
文件 1440054 2008-08-22 11:25 图像平滑与去噪\7\瑞利噪声.bmp
文件 195054 2008-08-23 15:14 图像平滑与去噪\7\统计平滑方法对话框.bmp
文件 1440054 2008-08-23 15:16 图像平滑与去噪\7\统计方法滤波后图像.bmp
文件 1440054 2008-01-24 10:51 图像平滑与去噪\7\高斯噪声.bmp
文件 1440054 2008-03-10 10:53 图像平滑与去噪\7\高斯滤波后图像.bmp
文件 135414 2008-08-23 14:39 图像平滑与去噪\7\高斯滤波对话框.bmp
文件 73728 2008-09-05 10:17 图像平滑与去噪\7程序\smooth\smooth\bin\Debug\smooth.exe
文件 112128 2008-09-05 10:17 图像平滑与去噪\7程序\smooth\smooth\bin\Debug\smooth.pdb
文件 5632 2005-12-08 14:51 图像平滑与去噪\7程序\smooth\smooth\bin\Debug\smooth.vshost.exe
文件 69266 2008-09-05 10:17 图像平滑与去噪\7程序\smooth\smooth\Form1.cs
文件 6571 2008-08-23 14:39 图像平滑与去噪\7程序\smooth\smooth\Form1.Designer.cs
文件 5814 2008-08-23 14:39 图像平滑与去噪\7程序\smooth\smooth\Form1.resx
文件 745 2008-09-03 22:17 图像平滑与去噪\7程序\smooth\smooth\gauss.cs
文件 3714 2008-09-03 22:16 图像平滑与去噪\7程序\smooth\smooth\gauss.Designer.cs
文件 5814 2008-08-22 10:32 图像平滑与去噪\7程序\smooth\smooth\gauss.resx
文件 879 2008-09-03 21:05 图像平滑与去噪\7程序\smooth\smooth\meanMedian.cs
文件 5612 2008-09-03 21:05 图像平滑与去噪\7程序\smooth\smooth\meanMedian.Designer.cs
文件 5814 2008-08-22 11:45 图像平滑与去噪\7程序\smooth\smooth\meanMedian.resx
............此处省略49个文件信息
相关资源
- 酒店管理系统+C#+三层架构及抽象工厂
- 目前最新 ILSpy_binaries_5.0.0.4688-preview
- 《Visual C# 2008 从入门到精通》配套范
- C#与ABB机器人通讯及控制
- C# 打印机监控系统 源码 打印任务监控
- c# HIST系统医院管理系统
- C#带背景绘图拖鼠标画矩形和直线
- C# Winform客户端实现M2Mqtt连接Apollo MQ
- 数据结构(C#语言描述-陈广
- C#黑白棋完整版-开发者-沙加原创
- C# teechart
- C#个人通讯录系统
- C# 简易公交路线查询软件
- 课程设计-C#户籍管理系统
- C#语音播放+语音生成工具Winform
- 图书管理系统 超简单 很适合课程设计
- c# 采集核心源码 获取超连接
- C# windows 服务学习
- c#二维码打印
- IM即时通讯源码C#开发有数据库
- C#程序实现Canny边缘检测算法
- C#实现在线视频聊天语音聊天全源
- c#井字游戏
- 各种版本UDP和TCP小程序
- 基于C#的网上购物系统
- C#文件资源管理器——仿我的电脑
- C#+Access实现小型CRM系统
- C#黑白图像去噪源代码工程
- C# 的设备管理系统
- C#开发的超市商品管理系统
评论
共有 条评论