资源简介

1、实现基本的图象增强方法。 2、实现空域滤波的平滑算法。 3、实现图像梯度锐化方法。 4、实现图像间的代数运算

资源截图

代码片段和文件信息

// AvgDialog.cpp : implementation file
//

#include “stdafx.h“
#include “demo.h“
#include “AvgDialog.h“

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

/////////////////////////////////////////////////////////////////////////////
// AvgDialog dialog


AvgDialog::AvgDialog(CWnd* pParent /*=NULL*/)
: CDialog(AvgDialog::IDD pParent)
{
//{{AFX_DATA_INIT(AvgDialog)
m_nIndex = 0;
//}}AFX_DATA_INIT
}


void AvgDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(AvgDialog)
DDX_Control(pDX IDC_AvgCombo m_nCombo);
DDX_CBIndex(pDX IDC_AvgCombo m_nIndex);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(AvgDialog CDialog)
//{{AFX_MSG_MAP(AvgDialog)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// AvgDialog message handlers

void AvgDialog::OnOK() 
{
// TODO: Add extra validation here
m_nIndex=((CComboBox *)GetDlgItem(IDC_AvgCombo))->GetCurSel();
CDialog::OnOK();
}

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

     文件     255027  2013-11-12 22:19  实验3.doc

     文件       1082  2011-09-17 10:23  实验三程序\实验三参考程序\AvgDialog.cpp

     文件       1191  2011-09-17 10:23  实验三程序\实验三参考程序\AvgDialog.h

     文件       1567  2010-01-10 21:13  实验三程序\实验三参考程序\ChildFrm.cpp

     文件       1397  2004-02-23 08:31  实验三程序\实验三参考程序\ChildFrm.h

     文件          8  2005-03-07 13:10  实验三程序\实验三参考程序\data.txt

     文件      14649  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\AvgDialog.obj

     文件          0  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\AvgDialog.sbr

     文件      18104  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\ChildFrm.obj

     文件          0  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\ChildFrm.sbr

     文件    5571584  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demo.bsc

     文件     176244  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demo.exe

     文件     525016  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demo.ilk

     文件      25235  2013-11-06 20:37  实验三程序\实验三参考程序\Debug\demo.obj

     文件    6881164  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\demo.pch

     文件     590848  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demo.pdb

     文件      20412  2013-11-12 19:47  实验三程序\实验三参考程序\Debug\demo.res

     文件          0  2013-11-06 20:38  实验三程序\实验三参考程序\Debug\demo.sbr

     文件      19464  2013-11-06 20:38  实验三程序\实验三参考程序\Debug\demoDoc.obj

     文件          0  2013-11-06 20:38  实验三程序\实验三参考程序\Debug\demoDoc.sbr

     文件      57819  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demoView.obj

     文件          0  2013-11-12 21:42  实验三程序\实验三参考程序\Debug\demoView.sbr

     文件      23011  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\Dib.obj

     文件          0  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\Dib.sbr

     文件      16112  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\DIBapi.obj

     文件          0  2013-11-06 20:15  实验三程序\实验三参考程序\Debug\DIBapi.sbr

     文件      23603  2013-11-06 20:37  实验三程序\实验三参考程序\Debug\ImgCenterDib.obj

     文件          0  2013-11-06 20:38  实验三程序\实验三参考程序\Debug\ImgCenterDib.sbr

     文件      27480  2013-11-12 20:43  实验三程序\实验三参考程序\Debug\ImgEnhance.obj

     文件          0  2013-11-12 20:43  实验三程序\实验三参考程序\Debug\ImgEnhance.sbr

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

评论

共有 条评论