• 大小: 1.96MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-15
  • 语言: C/C++
  • 标签: GLG  Gray-Level  Grouping  

资源简介

从IEEE上下载的关于图像增强的一种方法,自己动手做了算法实现,MFC制作,使用dibimage图像类,适合初学者看看。

资源截图

代码片段和文件信息

// ChildFrm.cpp : implementation of the CChildframe class
//

#include “stdafx.h“
#include “GLG.h“

#include “ChildFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CChildframe

IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)

BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction

CChildframe::CChildframe()
{
// TODO: add member initialization code here

}

CChildframe::~CChildframe()
{
}

BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;

cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
| FWS_ADDTOtitle | WS_THICKframe | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;

return TRUE;
}

void CChildframe::Activateframe(int nCmdShow)
{
// TODO: Modify this function to change how the frame is activated.

nCmdShow = SW_SHOWMAXIMIZED;
CMDIChildWnd::Activateframe(nCmdShow);
}


/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics

#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}

void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers

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

     文件       1877  2011-10-23 14:24  GLG\ChildFrm.cpp

     文件       1451  2011-10-23 14:24  GLG\ChildFrm.h

     文件      16757  2011-10-23 14:24  GLG\Debug\ChildFrm.obj

     文件      45450  2011-10-25 17:08  GLG\Debug\DIBIMAGE.obj

     文件     147512  2011-10-25 17:08  GLG\Debug\GLG.exe

     文件     480224  2011-10-25 17:08  GLG\Debug\GLG.ilk

     文件      23210  2011-10-23 22:02  GLG\Debug\GLG.obj

     文件    5493172  2011-10-23 14:24  GLG\Debug\GLG.pch

     文件     558080  2011-10-25 17:08  GLG\Debug\GLG.pdb

     文件       7996  2011-10-23 22:02  GLG\Debug\GLG.res

     文件      22262  2011-10-23 14:44  GLG\Debug\GLGDoc.obj

     文件      28525  2011-10-25 15:53  GLG\Debug\GLGView.obj

     文件      18518  2011-10-23 15:59  GLG\Debug\HistoDlg.obj

     文件      18888  2011-10-23 14:24  GLG\Debug\MainFrm.obj

     文件     105520  2011-10-23 14:24  GLG\Debug\StdAfx.obj

     文件     238592  2011-10-25 17:08  GLG\Debug\vc60.idb

     文件     372736  2011-10-25 17:08  GLG\Debug\vc60.pdb

     文件      56178  2011-10-25 17:08  GLG\DIBIMAGE.CPP

     文件       3099  2011-10-25 15:53  GLG\DIBIMAGE.H

     文件      30016  2011-10-25 15:48  GLG\GLG.APS

     文件       3244  2011-10-25 17:10  GLG\GLG.clw

     文件       4333  2011-10-23 14:24  GLG\GLG.cpp

     文件       4876  2011-10-23 16:28  GLG\GLG.dsp

     文件        514  2011-10-23 16:28  GLG\GLG.dsw

     文件       1323  2011-10-23 14:24  GLG\GLG.h

     文件      99328  2011-10-25 17:10  GLG\GLG.ncb

     文件      54784  2011-10-25 17:10  GLG\GLG.opt

     文件       1318  2011-10-25 17:08  GLG\GLG.plg

     文件      13769  2011-10-23 22:02  GLG\GLG.rc

     文件       3188  2011-10-23 14:44  GLG\GLGDoc.cpp

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

评论

共有 条评论