资源简介
C# 遥感影像分类,可以实现各种遥感影像的分类,基于IDL8.2实现的.
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.DataSourcesRaster;
namespace RSImageClassification
{
public partial class BinaryEncoding : Form
{
List BinaEncodName = new List();
public bool ShowResultOrNot = false;
public string ResultFilePath = string.Empty;
public BinaryEncoding(List fname)
{
InitializeComponent();
this.StartPosition = FormStartPosition.CenterScreen;
BinaEncodName = fname;
}
private void BinaryEncoding_Load(object sender EventArgs e)
{
if (BinaEncodName != null)
{
for (int i = 0; i < BinaEncodName.Count(); i++)
{
cmbInputFile.Items.Add(System.IO.Path.GetFileName(BinaEncodName[i]));
}
}
}
private void cmbInputFile_SelectedIndexChanged(object sender EventArgs e)
{
listBox1.Items.Clear();
for (int i = 0; i < BinaEncodName.Count(); i++)
{
string selectedFileName = cmbInputFile.SelectedItem.ToString().Trim();
if (selectedFileName == System.IO.Path.GetFileName(BinaEncodName[i]))
{
IRasterDataset rd = ReadRasterDataset.OpenFileRasterDataset(BinaEncodName[i]);
IRasterBandCollection rbc = (IRasterBandCollection)rd;
for (int j = 0; j < rbc.Count; j++)
{
IRasterBand band = rbc.Item(j);
listBox1.Items.Add(band.Bandname);
}
lbSelectedBand.Text = “0//“ + listBox1.Items.Count;
}
}
}
private void btnSelectImage_Click(object sender EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.title = “选择栅格图像“;
openFileDialog.Filter = “Img and Tif Files(*.img*.tif)|*.img;*.tif|Img Files(*.img)|*.img|Tif Files(*.tif)|*.tif|All Files(*.*)|*.*“;
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
cmbInputFile.Text = openFileDialog.FileName;
}
try
{
IRasterDataset rd = ReadRasterDataset.OpenFileRasterDataset(openFileDialog.FileName);
IRasterBandCollection rbc = (IRasterBandCollection)rd;
for (int j = 0; j < rbc.Count; j++)
{
IRasterBand band = rbc.Item(j);
listBox1.Items.Add(band.Bandname);
}
lbSelectedBand.Text = “0//“ + listBox1.Items.Count;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-11-06 21:41 遥感影像分类\
目录 0 2013-10-02 22:55 遥感影像分类\RSImageClassification\
目录 0 2013-10-02 22:55 遥感影像分类\RSImageClassification\RSImageClassification\
文件 905 2013-08-15 22:47 遥感影像分类\RSImageClassification\RSImageClassification.sln
文件 58368 2014-02-23 10:45 遥感影像分类\RSImageClassification\RSImageClassification.suo
目录 0 2013-10-02 22:55 遥感影像分类\RSImageClassification\RSImageClassification\bin\
文件 8884 2013-10-01 16:08 遥感影像分类\RSImageClassification\RSImageClassification\BinaryEncoding.cs
文件 18283 2013-10-01 16:03 遥感影像分类\RSImageClassification\RSImageClassification\BinaryEncoding.Designer.cs
文件 5817 2013-10-01 16:03 遥感影像分类\RSImageClassification\RSImageClassification\BinaryEncoding.resx
目录 0 2013-10-02 22:55 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\
文件 1406 2012-10-09 21:34 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\047.ico
文件 1283 2010-04-26 00:00 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\10977.png
文件 43520 2013-12-04 11:24 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\CreateROI.dll
文件 38400 2013-12-04 11:24 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\CreateROI.pdb
文件 2142 2013-12-04 11:24 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\CreateROI.xm
文件 2007 2013-08-11 23:29 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\createroi_polygon.pro
文件 824 2012-10-09 21:34 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\FullExtent.bmp
文件 865 2013-08-15 22:02 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\new files.png
文件 125952 2014-02-23 10:35 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImageClassification.exe
文件 241152 2014-02-23 10:35 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImageClassification.pdb
文件 11600 2014-02-23 10:46 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImageClassification.vshost.exe
文件 490 2010-03-17 22:39 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImageClassification.vshost.exe.manifest
文件 2137 2013-10-01 16:01 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_BinaryEncoding.pro
文件 893 2013-09-28 13:23 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_Isodata.pro
文件 604 2013-09-29 23:16 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_KMeans.pro
文件 2124 2013-09-30 23:20 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_MahalanobisDistance.pro
文件 2058 2013-09-30 23:26 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_MaximunLikelihood.pro
文件 2020 2013-09-30 22:31 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_MinimumDistance.pro
文件 1908 2013-10-01 21:01 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_NeuralNet.pro
文件 2292 2013-09-30 22:03 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_parallelepiped.pro
文件 2115 2013-10-01 15:40 遥感影像分类\RSImageClassification\RSImageClassification\bin\Debug\RSImage_SAM.pro
............此处省略136个文件信息
- 上一篇:重复文件清理工具含源代码C#
- 下一篇:c# 16进制转字符串 字符串转16进制
相关资源
- c# 16进制转字符串 字符串转16进制
- 重复文件清理工具含源代码C#
- 使用AForge类库的视频播放C#
- C#编写的通讯录管理系统C#源代码程序
- C#编写的通讯录管理系统源代码程序
- 二进制文件的读写当前时间写入到d
- 动态添加控件每点击一次就会增加一
-
C#读取xm
l文件并显示在DataGrid组件中 - C#写的webservice服务端和调用端(完整
- C#写的串口16进制收发程序源码.rar
- C# TCP服务器,支持多个客服端连入
- C#利用ManagedWifi获取当前已经连接的
- C# 自动修改Default.rdp,调用mstsc.exe实现
- C#+AE开发的地图编辑程序,适合初学者
- C#系统项目参考-企业电话客服系统
- C#中的TCP和UDP通信的实现
- 机器人路径规划c#
-
基于c#的Arcob
ject的一个 -
C#用sc
riptControl动态执行JS和VBS脚本 - 《ArcGIS Engine+C#开发教程》源码
- PIC18F UART Bootloader (C# 上位机)
- 密码管理专家系统源代码
- c#聊天室作业及实验报告
- C#文本编辑器代码及项目
- 摄像机漫游C#脚本WASD或方向键控制,
- [源代码] C# WinForms 经典小游戏 - 华容
- C# ASP.NET - 将Web网页导出至Word文档
- C# ASP.NET- 在线投票系统 简单
- C# - 简易聊天室实现网页
- blowfish算法的C#实现
评论
共有 条评论