资源简介

C#实现图像分割,包括图片示例。实现了各种图像分割的算法

资源截图

代码片段和文件信息

/************************************************************************
 * 数字图像处理--VC#.NET编程与实验 第8章 图像分割
 * ImageSegmentation.Form1.cs
 * Version 1.0 2010.01.29
 * Author  Xie-Hua Sun 
 ************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace ImageSegmenation
{
    public partial class Form1 : Form
    {
        Bitmap curBitmap = null;
        int iw ih;

        public Form1()
        {
            InitializeComponent();
            label1.Text = ““;
            label2.Text = ““;
        }

        //打开        
        private void menuItem2_Click(object sender Even

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     196662  2009-08-29 19:15  ch8 图像分割\image\ball.bmp

     文件     196662  2009-08-31 11:39  ch8 图像分割\image\Hough.bmp

     文件      11921  2005-05-08 21:03  ch8 图像分割\image\Lena.jpg

     文件      66614  2005-06-23 18:28  ch8 图像分割\image\PEPPERS.bmp

     文件     196662  2009-08-29 19:04  ch8 图像分割\image\差影法.bmp

     文件     196662  2009-08-29 19:02  ch8 图像分割\image\差影背景.bmp

     文件      36864  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\bin\Debug\ImageSegmenation.exe

     文件      67072  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\bin\Debug\ImageSegmenation.pdb

     文件       5632  2005-12-08 14:51  ch8 图像分割\ImageSegmenation\bin\Debug\ImageSegmenation.vshost.exe

     文件      26112  2007-05-07 22:28  ch8 图像分割\ImageSegmenation\bin\Release\ImageSegmenation.pdb

     文件      41502  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\Form1.cs

     文件      13984  2010-01-10 10:01  ch8 图像分割\ImageSegmenation\Form1.Designer.cs

     文件       6011  2010-01-10 10:01  ch8 图像分割\ImageSegmenation\Form1.resx

     文件       3506  2010-01-20 22:36  ch8 图像分割\ImageSegmenation\ImageSegmenation.csproj

     文件        920  2010-02-02 21:11  ch8 图像分割\ImageSegmenation\ImageSegmenation.sln

    ..A..H.     19456  2011-03-09 11:00  ch8 图像分割\ImageSegmenation\ImageSegmenation.suo

     文件       1429  2010-01-25 20:46  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.csproj.FileListAbsolute.txt

     文件        842  2010-02-02 21:11  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.csproj.GenerateResource.Cache

     文件      36864  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.exe

     文件        180  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.Form1.resources

     文件      67072  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.pdb

     文件        180  2010-08-03 20:20  ch8 图像分割\ImageSegmenation\obj\Debug\ImageSegmenation.Properties.Resources.resources

     文件       4608  2010-01-20 22:36  ch8 图像分割\ImageSegmenation\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        678  2010-02-18 16:08  ch8 图像分割\ImageSegmenation\obj\ImageSegmenation.csproj.FileList.txt

     文件       9336  2011-03-09 10:55  ch8 图像分割\ImageSegmenation\obj\ImageSegmenation.csproj.FileListAbsolute.txt

     文件        842  2007-05-07 20:06  ch8 图像分割\ImageSegmenation\obj\Release\ImageSegmenation.csproj.GenerateResource.Cache

     文件        180  2007-05-07 20:06  ch8 图像分割\ImageSegmenation\obj\Release\ImageSegmenation.Form1.resources

     文件      26112  2007-05-07 22:28  ch8 图像分割\ImageSegmenation\obj\Release\ImageSegmenation.pdb

     文件        180  2007-05-07 20:06  ch8 图像分割\ImageSegmenation\obj\Release\ImageSegmenation.Properties.Resources.resources

     文件        475  2007-05-07 19:30  ch8 图像分割\ImageSegmenation\Program.cs

............此处省略21个文件信息

评论

共有 条评论