摘要: 工作列表( Work List )(二)1 、目的 书接前文:http://blog.csdn.net/pachleng/archive/2010/08/10/5800513.aspx,自定义患者信息,影像设备通过 DICOM 标准中的 Work List 获取登记的患者信息,并能对影像设备与“工作 阅读全文
posted @ 2016-02-25 16:07 風行 阅读(1641) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include "windows.h" #include "malloc.h" #include //十进制数转换成二进制数字 void fun_1(int n) { if(n<2) cout<<n; if(n>=2) { fun_1(n/2); cout< 阅读全文
posted @ 2016-02-25 16:07 風行 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1 、目的 在工作站上登记患者,影像设备通过 DICOM 标准中的 Work List 获取登记的患者信息。 2 、实验平台 Windows XP Professional SP2 ,其他 Windows 系统笔者未验证,希望验证过的朋友添加进来。 3 、前置条件 在您的电脑上新建文件夹如下 C:/ 阅读全文
posted @ 2016-02-25 16:06 風行 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 第一章 与影像设备互连 PACS(Picture Archiving and Communication System) ,译为医学影像归档与通讯系统,关于该名词更多详细的解释,请参考网络。 一、接收影像 1 、目的:接收影像设备发送的影像,并显示。 2 、实验平台: Windows XP Prof 阅读全文
posted @ 2016-02-25 16:05 風行 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 打印影像(胶片)1 、目的:将 DICOM 影像提交至相机(干式胶片打印机),并打印。 2 、实验平台: Windows XP Professional SP2 ,其他 Windows 系统笔者未验证,希望验证过的朋友添加进来。 3 、前置条件 在您的电脑上新建文件夹如下 C:/PACS ,用于存放 阅读全文
posted @ 2016-02-25 16:03 風行 阅读(2124) 评论(0) 推荐(0) 编辑
摘要: //--------------方式1 CString SetSoftDlg::GetCurrentPath() { char lpExePathName[255]; char lpExePath[255]; char lpExeName[255]; char ExeDrive[10]; char 阅读全文
posted @ 2016-02-25 16:02 風行 阅读(8923) 评论(0) 推荐(0) 编辑
摘要: void isplit(const string& src, const string& separator, vector& dest) { string str = src; string substring; string::size_type start = 0, index; do { i 阅读全文
posted @ 2016-02-25 16:02 風行 阅读(281) 评论(0) 推荐(0) 编辑
摘要: -- ================================================ -- Template generated from Template Explorer using: -- Create Procedure (New Menu).SQL -- -- Use t 阅读全文
posted @ 2016-02-25 16:00 風行 阅读(4641) 评论(0) 推荐(0) 编辑
摘要: FILE * fp = fopen("C:\Nero.rar","rb"); if (fp == NULL) { return; } if (!fseek(fp,128,SEEK_SET)) //直接跳过文件导言 { char DICOM[5]; fread(DICOM,1,4,fp); DICOM 阅读全文
posted @ 2016-02-25 16:00 風行 阅读(588) 评论(0) 推荐(0) 编辑
摘要: //->->H #ifndef Unit_GlobalH #define Unit_GlobalH //-------------------------------------------------------------------------------------------------- 阅读全文
posted @ 2016-02-25 15:59 風行 阅读(355) 评论(0) 推荐(0) 编辑