C#图像处理的多种方法

本文实例为大家分享了C#图像处理的具体代码,供大家参考,具体内容如下

(1)在Form1窗体中的PictureBox1控件中显示通过OpenFileDialog指定的图像文件内容。

将SizeMode设置成StretchImage

private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
    {
      OpenFileDialog open = new OpenFileDialog();
      open.Filter = "所有文件|*.*";
      if (open.ShowDialog() == DialogResult.OK)
      {
        Bitmap im = new Bitmap(open.FileName);
        pictureBox1.Image = im;
        //pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
      }
    }

(2)编制一个图像格式转换的应用程序,实现BMP图像与JPEG图像的格式转换。

private void bMPToolStripMenuItem_Click(object sender, EventArgs e)
    {
      Bitmap box = new Bitmap(pictureBox1.Image);
      SaveFileDialog sv1 = new SaveFileDialog();
      sv1.Filter = "bmp|*.bmp";
      sv1.ShowDialog();
      string str = sv1.FileName;
      box.Save(str, System.Drawing.Imaging.ImageFormat.Bmp);
    }

private void jPEGToolStripMenuItem_Click(object sender, EventArgs e)
    {
      Bitmap box = new Bitmap(pictureBox1.Image);
      SaveFileDialog sv1 = new SaveFileDialog();
      sv1.Filter = "jpeg文件|*.jpeg";
      sv1.ShowDialog();
      string str = sv1.FileName;
      box.Save(str, System.Drawing.Imaging.ImageFormat.Jpeg);
    }

(3)在窗体中添加两个PictureBox,然后利用OpenFileDialog控件选择一彩色图像文件并在pictureBox1中加载,然后将这一彩色图像转换为灰度图像,并在pictureBox2中进行显示,将此图像保存为a.bmp。

private void 灰度ToolStripMenuItem_Click(object sender, EventArgs e)
    {
      pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
      Color c = new Color();
      Bitmap b1 = new Bitmap(pictureBox1.Image);
      int rr, gg, bb, cc;
      for (int i = 0; i < pictureBox1.Image.Width; i++)
      {
        for (int j = 0; j < pictureBox1.Image.Height; j++)
        {
          c = b1.GetPixel(i, j);
          rr = c.R;
          gg = c.G;
          bb = c.B;
          cc = (int)((rr + gg + bb) / 3);
          if (cc < 0) cc = 0;
          if (cc > 255) cc = 255;
          Color nc = Color.FromArgb(cc, cc, cc);
          b1.SetPixel(i, j, nc);
        }
      }
      pictureBox2.Refresh();
      pictureBox2.Image = b1;
    }
private void 灰度图像存储ToolStripMenuItem_Click(object sender, EventArgs e)
    {

      if (pictureBox2.Image != null)
      {
        Bitmap box = new Bitmap(pictureBox2.Image);
        SaveFileDialog sv1 = new SaveFileDialog();
        sv1.Filter = "bmp文件|*.bmp";
        sv1.ShowDialog();
        string str = sv1.FileName;
        box.Save(str, System.Drawing.Imaging.ImageFormat.Bmp);
        //pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
      }
      else MessageBox.Show("没有生成灰度图像");
    }

(4)将(3)中制作的a.bmp图像加载到PictureBox1,把a.bmp转换为二值图像,并在pictureBox2中进行显示。

private void 转化ToolStripMenuItem_Click(object sender, EventArgs e)
    {
      //Bitmap m = new Bitmap(pictureBox1.Width, pictureBox1.Height);
      Bitmap map=new Bitmap(pictureBox1.Image);
      Color c;
      for (int i = 0; i < map.Height; i++)
      {
        for (int j = 0; j < map.Width; j++)
        {
          c = map.GetPixel(j, i);
          if (c.R > 100) c = Color.FromArgb(255, 255, 255); //红色分量值大于100则设成白色
          else c = Color.Black;
          map.SetPixel(j, i, c);
        }
      }
      pictureBox2.Image = map;
      pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
    }

(5)建立对比度增强算法,并对a.bmp图像进行对比度增强,显示在pictureBox2中显示出来,与PictureBox1中的a.bmp图像进行比较。

private void 对比ToolStripMenuItem_Click(object sender, EventArgs e)
    {
      Color c = new Color();
      Bitmap box1 = new Bitmap(pictureBox1.Image);
      int lev=30, wid=170;
      int[] map = new int[256];
      for(int i=0;i<=lev;i++)
      {
        map[i]=0;
      }
      for (int i=lev;i<=wid;i++) //对比度增强
      {
        map[i] = (int)((i * 1.0 - lev) / wid * 255);
      }
      for (int i = lev + wid; i < 256; i++)
      {
        map[i] = 255;
      }
      int gray;
      for (int i = 0; i < box1.Width; i++)
      {
        for (int j = 0; j < box1.Height; j++)
        {
          c = box1.GetPixel(i, j);
          gray = c.R;
          c = Color.FromArgb(map[gray], map[gray], map[gray]);
          box1.SetPixel(i, j, c);
        }
      }
      pictureBox2.Image = box1;
      pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
 }

灰度图像:

二值图像:

对比度增强:


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • C#简单数字图像处理程序

    C#编写的简单数字图像处理程序,数字图像处理的平时成绩和编程作业竟然占50%,那就把最近做的事写个札记吧. 先放个最终做成提交的效果看看: 1.直方图均衡化 2.算子锐化 3.空域增强 一.要达到的目的和效果 1.打开,保存图片: 2.获取图像灰度值,图像坐标: 3.进行线性变换,直方图均衡化处理: 4.直方图变换增强,以及各种滤波处理: 5.图像锐化(Kirsch,Laplace,sobel等算子). 二.编程环境及语言 C#-WindowsForm-VS2015 三.图标 最近发现了一个完全

  • C#图像处理之边缘检测(Sobel)的方法

    本文实例讲述了C#图像处理之边缘检测(Sobel)的方法.分享给大家供大家参考.具体如下: //定义sobel算子函数 private static Bitmap sobel(Bitmap a) { int w = a.Width; int h = a.Height; try { Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.Drawing.Imagin

  • C#图像处理之图像平移的方法

    本文实例讲述了C#图像处理之图像平移的方法.分享给大家供大家参考.具体如下: //定义图像平移函数 private static Bitmap offsetp(Bitmap a,int s,int v) { System.Drawing.Imaging.BitmapData srcData = a.LockBits(new Rectangle (0,0,a.Width ,a.Height) ,System .Drawing .Imaging .ImageLockMode .ReadWrite ,

  • C#数字图像处理之图像缩放的方法

    本文实例讲述了C#数字图像处理之图像缩放的方法.分享给大家供大家参考.具体如下: //定义图像缩放函数 private static Bitmap ZoomP(Bitmap a, float s, float v) { Bitmap bmp = new Bitmap((int)(a.Width * s), (int)(a.Height * v), System.Drawing.Imaging.PixelFormat.Format24bppRgb); Graphics g = Graphics.F

  • C#图像处理之木刻效果实现方法

    本文实例讲述了C#图像处理之木刻效果实现方法.分享给大家供大家参考.具体如下: //木刻效果 public Bitmap PFilterMuKe(Bitmap src) { try { Bitmap a = new Bitmap(src); Rectangle rect = new Rectangle(0, 0, a.Width, a.Height); System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Draw

  • c#数字图像处理的3种方法示例分享

    本文主要通过彩色图象灰度化来介绍C#处理数字图像的3种方法,Bitmap类.BitmapData类和Graphics类是C#处理图像的的3个重要的类. Bitmap只要用于处理由像素数据定义的图像的对象,主要方法和属性如下: GetPixel方法和SetPixel方法,获取和设置一个图像的指定像素的颜色. PixelFormat属性,返回图像的像素格式. Palette属性,获取或折纸图像所使用的颜色调色板. Height属性和Width属性,返回图像的高度和宽度. LockBits方法和Unl

  • C#图像处理之边缘检测(Smoothed)的方法

    本文实例讲述了C#图像处理之边缘检测(Smoothed)的方法.分享给大家供大家参考.具体如下: //定义smoothed算子边缘检测函数 private static Bitmap smoothed(Bitmap a) { int w = a.Width; int h = a.Height; try { Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.D

  • C#数字图像处理之图像二值化(彩色变黑白)的方法

    本文实例讲述了C#数字图像处理之图像二值化(彩色变黑白)的方法.分享给大家供大家参考.具体如下: //定义图像二值化函数 private static Bitmap PBinary(Bitmap src,int v) { int w = src.Width; int h = src.Height; Bitmap dstBitmap = new Bitmap(src.Width ,src.Height ,System .Drawing .Imaging .PixelFormat .Format24

  • 浅谈Visual C#进行图像处理(读取、保存以及对像素的访问)

    这里之所以说"浅谈"是因为我这里只是简单的介绍如何使用Visual C#进行图像的读入.保存以及对像素的访问.而不涉及太多的算法. 一.读取图像 在Visual C#中我们可以使用一个Picture Box控件来显示图片,如下: 复制代码 代码如下: private void btnOpenImage_Click(object sender, EventArgs e) {     OpenFileDialog ofd = new OpenFileDialog();     ofd.Fi

  • C#图像处理之图像均值方差计算的方法

    本文实例讲述了C#图像处理之图像均值方差计算的方法.分享给大家供大家参考.具体如下: //本函数均是基于RGB颜色空间计算 //定义图像均值函数(RGB空间) public double AnBitmap(Bitmap a) { double V = 0; Rectangle rect = new Rectangle(0, 0, a.Width, a.Height); System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, Sys

随机推荐