91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 2.88MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發布日期: 2023-08-17
  • 語言: C#
  • 標簽: C#??VS2005??

資源簡介

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?????????????????????{
????????????????

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件????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個文件信息

評論

共有 條評論