资源简介
X-CT图像重建算法是现代断层成像技术的基础。
1. 仿真头模型的建立
2. 仿真投影数据的获得
3. 直接反投影法CT图像重建
4. 滤波(或卷积)反投影法CT图像重建
代码片段和文件信息
// bmpdis.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “bmpdis.h“
#include “MainFrm.h“
#include “ChildFrm.h“
#include “bmpdisDoc.h“
#include “bmpdisView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBmpdisApp
BEGIN_MESSAGE_MAP(CBmpdisApp CWinApp)
//{{AFX_MSG_MAP(CBmpdisApp)
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()
/////////////////////////////////////////////////////////////////////////////
// CBmpdisApp construction
CBmpdisApp::CBmpdisApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CBmpdisApp object
CBmpdisApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CBmpdisApp initialization
BOOL CBmpdisApp::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.
CMultiDocTemplate* pDocTemplate;
pDocTemplate = new CMultiDocTemplate(
IDR_BMPDISTYPE
RUNTIME_CLASS(CBmpdisDoc)
RUNTIME_CLASS(CChildframe) // custom MDI child frame
RUNTIME_CLASS(CBmpdisView));
AddDocTemplate(pDocTemplate);
// create main MDI frame window
CMainframe* pMainframe = new CMainframe;
if (!pMainframe->Loadframe(IDR_MAINframe))
return FALSE;
m_pMainWnd = pMainframe;
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 36628 2009-03-17 12:17 bmpdis-ct-total\bmpdis.aps
文件 6624 2009-03-17 12:18 bmpdis-ct-total\bmpdis.clw
文件 4390 2009-02-24 11:18 bmpdis-ct-total\bmpdis.cpp
文件 5270 2009-02-24 11:18 bmpdis-ct-total\bmpdis.dsp
文件 537 2009-02-24 11:18 bmpdis-ct-total\bmpdis.dsw
文件 1356 2009-02-24 11:18 bmpdis-ct-total\bmpdis.h
文件 312320 2009-03-17 12:19 bmpdis-ct-total\bmpdis.ncb
文件 104448 2009-03-17 12:19 bmpdis-ct-total\bmpdis.opt
文件 8416 2009-03-17 12:17 bmpdis-ct-total\bmpdis.plg
文件 18185 2009-02-24 11:18 bmpdis-ct-total\bmpdis.rc
文件 1759 2009-02-24 11:18 bmpdis-ct-total\bmpdisDoc.cpp
文件 1562 2009-02-24 11:18 bmpdis-ct-total\bmpdisDoc.h
文件 60591 2009-02-24 11:18 bmpdis-ct-total\bmpdisView.cpp
文件 2098 2009-02-24 11:18 bmpdis-ct-total\bmpdisView.h
文件 1533 2009-02-24 11:18 bmpdis-ct-total\ChildFrm.cpp
文件 1397 2009-02-24 11:18 bmpdis-ct-total\ChildFrm.h
文件 987 2009-02-24 11:18 bmpdis-ct-total\cinputdlg.cpp
文件 1205 2009-02-24 11:18 bmpdis-ct-total\cinputdlg.h
文件 4704 2009-02-24 11:18 bmpdis-ct-total\ct-model.cpp
文件 180313 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.exe
文件 421280 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.ilk
文件 23664 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.obj
文件 5502316 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.pch
文件 427008 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.pdb
文件 12724 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdis.res
文件 14931 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdisDoc.obj
文件 103710 2009-03-17 12:17 bmpdis-ct-total\Debug\bmpdisView.obj
文件 16411 2009-03-17 12:17 bmpdis-ct-total\Debug\ChildFrm.obj
文件 10533 2009-03-17 12:17 bmpdis-ct-total\Debug\cinputdlg.obj
文件 16092 2009-03-17 12:17 bmpdis-ct-total\Debug\FFT.obj
............此处省略33个文件信息
评论
共有 条评论