• 大小: 4.31MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: C/C++
  • 标签: DICOM  C++代码  

资源简介

借助于VC,使用C++开发一个软件,可以将DICOM图片转换为BMP图片,并进行简单的图像处理,并可根据用户进行后期处理

资源截图

代码片段和文件信息

// ct.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “ct.h“

#include “MainFrm.h“
#include “ctDoc.h“
#include “ctView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCtApp

BEGIN_MESSAGE_MAP(CCtApp CWinApp)
//{{AFX_MSG_MAP(CCtApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// 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
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCtApp construction

CCtApp::CCtApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCtApp object

CCtApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCtApp initialization

BOOL CCtApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCtDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CCtView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////////////////////////////////////////////////////

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-05-25 15:43  ct(终极)\
     目录           0  2010-06-07 08:55  ct(终极)\ct(终极)\
     文件       46616  2010-05-31 11:01  ct(终极)\ct(终极)\ct.aps
     文件        3833  2010-06-07 08:55  ct(终极)\ct(终极)\ct.clw
     文件        4137  2010-04-11 14:43  ct(终极)\ct(终极)\ct.cpp
     文件        5198  2010-04-18 19:43  ct(终极)\ct(终极)\ct.dsp
     文件         512  2010-04-11 14:43  ct(终极)\ct(终极)\ct.dsw
     文件        1312  2010-04-11 14:43  ct(终极)\ct(终极)\ct.h
     文件      230400  2010-06-07 08:55  ct(终极)\ct(终极)\ct.ncb
     文件       57856  2010-06-07 08:55  ct(终极)\ct(终极)\ct.opt
     文件         820  2010-06-07 08:52  ct(终极)\ct(终极)\ct.plg
     文件       14343  2010-05-31 11:01  ct(终极)\ct(终极)\ct.rc
     文件       21788  2010-06-07 08:52  ct(终极)\ct(终极)\ctDoc.cpp
     文件        2867  2010-04-19 10:20  ct(终极)\ct(终极)\ctDoc.h
     文件       15165  2010-05-25 14:35  ct(终极)\ct(终极)\ctView.cpp
     文件        2010  2010-04-19 10:00  ct(终极)\ct(终极)\ctView.h
     目录           0  2010-06-07 08:52  ct(终极)\ct(终极)\Debug\
     文件     3712000  2010-04-17 16:57  ct(终极)\ct(终极)\Debug\ct.bsc
     文件      155740  2010-06-07 08:52  ct(终极)\ct(终极)\Debug\ct.exe
     文件      437920  2010-06-07 08:52  ct(终极)\ct(终极)\Debug\ct.ilk
     文件       22574  2010-04-11 14:50  ct(终极)\ct(终极)\Debug\ct.obj
     文件     5493172  2010-04-11 14:43  ct(终极)\ct(终极)\Debug\ct.pch
     文件      574464  2010-06-07 08:52  ct(终极)\ct(终极)\Debug\ct.pdb
     文件        8256  2010-05-31 11:01  ct(终极)\ct(终极)\Debug\ct.res
     文件           0  2010-04-14 21:59  ct(终极)\ct(终极)\Debug\ct.sbr
     文件       56440  2010-06-07 08:52  ct(终极)\ct(终极)\Debug\ctDoc.obj
     文件           0  2010-04-17 16:15  ct(终极)\ct(终极)\Debug\ctDoc.sbr
     文件       41841  2010-05-25 15:41  ct(终极)\ct(终极)\Debug\ctView.obj
     文件           0  2010-04-17 16:57  ct(终极)\ct(终极)\Debug\ctView.sbr
     文件       16187  2010-04-11 15:00  ct(终极)\ct(终极)\Debug\DIBAPI.obj
     文件           0  2010-04-11 16:45  ct(终极)\ct(终极)\Debug\DIBAPI.sbr
............此处省略32个文件信息

评论

共有 条评论