• 大小: 394KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-27
  • 语言: 其他
  • 标签: 图像融合  

资源简介

图像融合,遥感图像处理-多光谱图像融合,一个初学者参考的VC程序

资源截图

代码片段和文件信息

// BIOLOGY.cpp : implementation file
//

#include “stdafx.h“
#include “Remote Sensing.h“
#include “BIOLOGY.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CBIOLOGY dialog


CBIOLOGY::CBIOLOGY(CWnd* pParent /*=NULL*/)
: CDialog(CBIOLOGY::IDD pParent)
{
//{{AFX_DATA_INIT(CBIOLOGY)
m_b5 = _T(““);
m_b7 = _T(““);
m_out = _T(““);
m_A = 0.0f;
//}}AFX_DATA_INIT
}


void CBIOLOGY::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CBIOLOGY)
DDX_Text(pDX IDC_B5 m_b5);
DDX_Text(pDX IDC_B7 m_b7);
DDX_Text(pDX IDC_OUTB m_out);
DDX_Text(pDX IDC_EDIT1 m_A);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CBIOLOGY CDialog)
//{{AFX_MSG_MAP(CBIOLOGY)
ON_BN_CLICKED(IDC_BUTTON1_VIEW OnButton1View)
ON_BN_CLICKED(IDC_BUTTON2_VIEW OnButton2View)
ON_BN_CLICKED(IDC_BUTTON3_SAVE OnButton3Save)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CBIOLOGY message handlers

void CBIOLOGY::OnButton1View() 
{
static char baseD_CODE file[] = “BMP Files *.BMP|*.bmp“;
CFileDialog SelectFile(TRUENULLNULLOFN_HIDEREADONLY | OFN_OVERWRITEPROMPTfileNULL );

SelectFile.DoModal();
CString FileName;
FileName=SelectFile.GetPathName();
m_b7=FileName;
UpdateData(FALSE); // TODO: Add your control notification handler code here

}

void CBIOLOGY::OnButton2View() 
{
static char baseD_CODE file[] = “BMP Files *.BMP|*.bmp“;
CFileDialog SelectFile(TRUENULLNULLOFN_HIDEREADONLY | OFN_OVERWRITEPROMPTfileNULL );

SelectFile.DoModal();
CString FileName;
FileName=SelectFile.GetPathName();
m_b5=FileName;
UpdateData(FALSE); // TODO: Add your control notification handler code here

}

void CBIOLOGY::OnButton3Save() 
{
static char baseD_CODE file[] = “BMP Files *.BMP|*.bmp“;
CFileDialog SelectFile(FALSENULLNULLOFN_HIDEREADONLY | OFN_OVERWRITEPROMPTfileNULL );

SelectFile.DoModal();
CString FileName;
FileName=SelectFile.GetPathName();
m_out=FileName;
UpdateData(FALSE); // TODO: Add your control notification handler code here

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1888  2003-12-25 17:49  Remote Sensing\8.txt
     文件      153382  2003-12-25 15:25  Remote Sensing\b5.bmp
     文件      153382  2003-12-25 15:25  Remote Sensing\b7.bmp
     文件        2284  2003-12-25 15:43  Remote Sensing\BIOLOGY.cpp
     文件        1269  2003-12-25 15:43  Remote Sensing\BIOLOGY.h
     文件        1541  2003-12-22 14:45  Remote Sensing\ChildFrm.cpp
     文件        1397  2003-12-22 14:45  Remote Sensing\ChildFrm.h
     文件       65041  2001-01-07 07:01  Remote Sensing\ColorTable.h
     文件       14382  2003-12-23 16:03  Remote Sensing\DIBAPI.CPP
     文件        4242  2003-12-25 00:35  Remote Sensing\DIBAPI.H
     文件        9658  2003-12-25 00:29  Remote Sensing\Frefour.cpp
     文件       18741  2003-12-25 17:24  Remote Sensing\FreTrans.cpp
     文件         851  2003-12-25 17:17  Remote Sensing\FreTrans.h
     文件        1702  2003-12-24 17:10  Remote Sensing\FTT.cpp
     文件        1160  2003-12-24 17:09  Remote Sensing\FTT.h
     文件        1631  2003-12-25 16:36  Remote Sensing\IFTT.cpp
     文件        1165  2003-12-25 16:35  Remote Sensing\IFTT.h
     文件        2531  2003-12-22 14:45  Remote Sensing\MainFrm.cpp
     文件        1542  2003-12-22 14:45  Remote Sensing\MainFrm.h
     文件        2280  2003-12-25 15:02  Remote Sensing\merge.cpp
     文件        1252  2003-12-25 15:02  Remote Sensing\merge.h
     文件        8312  2000-11-07 10:42  Remote Sensing\MYFILE.CPP
     文件         518  2003-12-22 16:44  Remote Sensing\PIC.cpp
     文件         501  2003-12-22 16:48  Remote Sensing\PIC.h
     文件        4974  2003-12-22 14:45  Remote Sensing\ReadMe.txt
     文件       50480  2003-12-25 17:00  Remote Sensing\Remote Sensing.aps
     文件        5843  2003-12-25 17:48  Remote Sensing\Remote Sensing.clw
     文件        4534  2003-12-22 17:00  Remote Sensing\Remote Sensing.cpp
     文件        5860  2003-12-25 17:49  Remote Sensing\Remote Sensing.dsp
     文件         553  2003-12-22 14:45  Remote Sensing\Remote Sensing.dsw
     文件        1436  2003-12-22 14:45  Remote Sensing\Remote Sensing.h
............此处省略18个文件信息

评论

共有 条评论