c#图像预处理灰度化和二值化,以及c#图像处理方法

c#图像预处理灰度化和二值化,以及c#图像处理方法

ID:6468693

大小:25.24 KB

页数:25页

时间:2018-01-14

c#图像预处理灰度化和二值化,以及c#图像处理方法_第1页
c#图像预处理灰度化和二值化,以及c#图像处理方法_第2页
c#图像预处理灰度化和二值化,以及c#图像处理方法_第3页
c#图像预处理灰度化和二值化,以及c#图像处理方法_第4页
c#图像预处理灰度化和二值化,以及c#图像处理方法_第5页
资源描述:

《c#图像预处理灰度化和二值化,以及c#图像处理方法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、c#图像预处理灰度化和二值化,以及c#图像处理方法usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespace_2图像灰度化/////////////////////////////////采用加权平均值法ret=(int)(

2、curColor.R*0.299+curColor.G*0.587+curColor.B*0.114);{publicpartialclassForm1:Form{privatestringcur;//文件位置privateSystem.Drawing.BitmapcurBitmap;//图像对象privateHiPerfTimermyTimer;publicForm1(){InitializeComponent();myTimer=newHiPerfTimer();}privatevoidForm1_Load(o

3、bjectsender,EventArgse){}privatevoidopen_Click(objectsender,EventArgse){OpenFileDialogod=newOpenFileDialog();od.Filter="所有图像文件

4、*.bmp;*.pcx;*.jpg;*.gif"+"*.tif;*.ico;*.dxf;*.cgm;*.cdr

5、"+"位图(*.bmp;*.jpg;*.png;...)

6、*.bmp;*.jpg;*.png";od.Title="打开图像文件";od.ShowHelp

7、=true;if(od.ShowDialog()==DialogResult.OK){cur=od.FileName;try{curBitmap=(Bitmap)Image.FromFile(cur);}catch(Exceptionex){MessageBox.Show(ex.Message);}Console.WriteLine(cur);Console.WriteLine(curBitmap);}Invalidate();}privatevoidclose_Click(objectsender,EventAr

8、gse){this.Close();}privatevoidsave_Click(objectsender,EventArgse){if(curBitmap==null){return;}SaveFileDialogsd=newSaveFileDialog();sd.Title="保存为";sd.OverwritePrompt=true;sd.Filter="bmp文件(*.bmp)

9、*.bmp

10、"+"gif文件(*.gif)

11、*.gif"+"jpeg文件(*..jpg)

12、*.jpg"+"png文件(*.png)

13、

14、*.png";sd.ShowHelp=true;if(sd.ShowDialog()==DialogResult.OK){stringsrc=sd.FileName;stringext=src.Remove(0,src.Length-3);switch(ext){case"bmp":curBitmap.Save(src,System.Drawing.Imaging.ImageFormat.Bmp);break;case"jpp":curBitmap.Save(src,System.Drawing.Imaging.I

15、mageFormat.Jpeg);break;case"gif":curBitmap.Save(src,System.Drawing.Imaging.ImageFormat.Gif);break;case"tif":curBitmap.Save(src,System.Drawing.Imaging.ImageFormat.Tiff);break;case"png":curBitmap.Save(src,System.Drawing.Imaging.ImageFormat.Png);break;default:bre

16、ak;}}}privatevoidForm1_Paint(objectsender,PaintEventArgse){Graphicsg=e.Graphics;if(curBitmap!=null){g.DrawImage(curBitmap,160,20,curBitmap.Width,curBitmap.Height);}}privatevoidpixe

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。