资源简介
这是我们交的实验,有关遥感图像的处理的一些编程,原创,有误之处请指教
代码片段和文件信息
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;
namespace 实验综合版
{
public partial class Brovey_图像融合 : Form
{
public Brovey_图像融合()
{
InitializeComponent();
}
Form1 f1;
private void open_Click(object sender EventArgs e)
{
tabControl1.SelectedIndex = 0;
if (pictureBox1.Image == null)
{
if (MessageBox.Show(“请选择多源遥感图像“ “提示“ MessageBoxButtons.OKCancel MessageBoxIcon.Exclamation MessageBoxDefaultButton.Button1) == DialogResult.OK)
{
tabControl1.SelectedIndex = 0;
OpenFileDialog file = new OpenFileDialog();
file.Filter = “打开文件(*.*)|*.*“;
if (file.ShowDialog() == DialogResult.OK)
{
Bitmap image = new Bitmap(file.FileName);
pictureBox1.Image = image;
}
}
}
else if (pictureBox1.Image != null && pictureBox2.Image == null)
{
tabControl1.SelectedIndex = 1;
if (MessageBox.Show(“请选择全色遥感图像“ “提示“ MessageBoxButtons.OKCancel MessageBoxIcon.Exclamation MessageBoxDefaultButton.Button1) == DialogResult.OK)
{
tabControl1.SelectedIndex = 1;
OpenFileDialog file = new OpenFileDialog();
file.Filter = “打开文件(*.*)|*.*“;
if (file.ShowDialog() == DialogResult.OK)
{
Bitmap image = new Bitmap(file.FileName);
pictureBox2.Image = image;
}
}
}
}
private void button2_Click(object sender EventArgs e)
{
tabControl1.SelectedIndex =2;
if (pictureBox1.Image != null && pictureBox2.Image != null)
{
tabControl1.SelectedIndex = 2;
int xres1 yres1 xres2 yres2 i j r1 g1 b1 xres3 yres3 r3 g3 b3;
double I;
xres1 = pictureBox1.Image.Width;
yres1 = pictureBox1.Image.Height;
xres2 = pictureBox1.Image.Width;
yres2 = pictureBox2.Image.Height;
xres3 = pictureBox3.Width;
yres3 = pictureBox3.Height;
Bitmap bit1 = new Bitmap(pictureBox1.Image);
Bitmap bit2 = new Bitmap(pictureBox2.Image);
Bitmap bit3 = new Bitmap(pictureBox2.Image);
Color c1 = new Color();
Color c2 = new Color();
for (i = 0; i <= xres1 - 1; i++)
{
for (j = 0; j <= yres1 - 1; j++)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-05-27 21:36 实验综合版\
目录 0 2011-05-27 21:36 实验综合版\实验综合版\
文件 887 2011-04-09 22:58 实验综合版\实验综合版.sln
文件 36864 2011-05-29 13:30 实验综合版\实验综合版.suo
目录 0 2011-05-27 21:36 实验综合版\实验综合版\bin\
目录 0 2011-05-27 22:06 实验综合版\实验综合版\bin\Debug\
文件 54784 2011-05-29 10:50 实验综合版\实验综合版\bin\Debug\实验综合版.exe
文件 140800 2011-05-29 10:50 实验综合版\实验综合版\bin\Debug\实验综合版.pdb
文件 11600 2011-05-29 13:29 实验综合版\实验综合版\bin\Debug\实验综合版.vshost.exe
文件 490 2010-03-17 22:39 实验综合版\实验综合版\bin\Debug\实验综合版.vshost.exe.manifest
目录 0 2011-04-19 21:19 实验综合版\实验综合版\bin\Release\
文件 4266 2011-05-27 22:30 实验综合版\实验综合版\Brovey 图像融合.cs
文件 8900 2011-05-27 22:30 实验综合版\实验综合版\Brovey 图像融合.Designer.cs
文件 5817 2011-05-27 22:30 实验综合版\实验综合版\Brovey 图像融合.resx
文件 27416 2011-05-28 21:56 实验综合版\实验综合版\Form1.cs
文件 20162 2011-05-28 18:29 实验综合版\实验综合版\Form1.Designer.cs
文件 6015 2011-05-28 18:29 实验综合版\实验综合版\Form1.resx
文件 862 2011-05-28 18:42 实验综合版\实验综合版\Form2.cs
文件 4052 2011-05-28 18:41 实验综合版\实验综合版\Form2.Designer.cs
文件 5817 2011-05-28 18:37 实验综合版\实验综合版\Form2.resx
文件 1097 2011-05-28 21:56 实验综合版\实验综合版\Form3.cs
文件 6806 2011-05-28 18:51 实验综合版\实验综合版\Form3.Designer.cs
文件 5817 2011-05-28 18:51 实验综合版\实验综合版\Form3.resx
文件 629 2011-04-10 15:33 实验综合版\实验综合版\Form4.cs
文件 4653 2011-04-10 15:48 实验综合版\实验综合版\Form4.Designer.cs
文件 5817 2011-04-10 15:33 实验综合版\实验综合版\Form4.resx
文件 633 2011-04-10 13:01 实验综合版\实验综合版\Form5.cs
文件 4608 2011-04-10 13:01 实验综合版\实验综合版\Form5.Designer.cs
文件 5817 2011-04-10 13:01 实验综合版\实验综合版\Form5.resx
文件 617 2011-04-10 15:31 实验综合版\实验综合版\Form6.cs
文件 4458 2011-04-10 13:23 实验综合版\实验综合版\Form6.Designer.cs
............此处省略57个文件信息
评论
共有 条评论