【转】dcmtk程序包综述(1)!!!!!!

转自:https://blog.csdn.net/shenziheng1/article/details/70053152

1.前言

本文对dcmtk程序包做了简单介绍,包括主要接口类的简单说明,可用的工具以及一些例子。下一步工作准备详细分析每个程序包中的接口类功能,并结合源码和dicom文档分析其实现过程。

2.Config程序包

config目录下的文档:

  • config.txt:指出你编辑的任何.h .c .cc文件,首先必须包含该目录下的头文件#include "osconfig.h"
  • dirstruc.txt:给出了dcmtk项目的项目目录结构,这个用cmake会自动生成
  • envvars.txt:这个文件比较重要,它指出了一些运行时环境变量,这些变量可能会影响dcmtk的工具和库的使用,这些变量包括:
    • DCMDICTPATH:影响dcmdata
      On Win32 platforms, a built-in dictionary is used by default. If the DCMDICTPATH environment variable is set, the applications will attempt to load _additional_ DICOM data dictionaries specified in the DCMDICTPATH environment variable instead. The DCMDICTPATH environment variable has the same format as the shell PATH variable in that a semicolon (";") separates entries. The data dictionary code will attempt to load each file specified in the DCMDICTPATH environment variable.
    • TCP_BUFFER_LENGTH:影响dcmnet
      By default, DCMTK uses a TCP send and receive buffer length of 32K. If the environment variable TCP_BUFFER_LENGTH is set,it specified an override for the TCP buffer length. The value is specified in bytes, not in Kbytes.
    • TCP_NODELAY:影响dcmnet.
      If this environment variable contains a non-zero number,the Nagle algorithm will not be disabled for TCP transport connections. Also see documentation for macro DONT_DISABLE_NAGLE_ALGORITHM in config/docs/macros.txt
    • TMPDIR:影响dcmnet.
      Affects the implementation of the tempnam() emulation on platforms where tempnam() is not defined. See tempnam(3S) main page for a description.
    • macros.txt:
      这个文件也特别重要,它给出了很多编译时的宏,这些宏可能会影响dcmtk的工具和库的使用。大部分的宏可以用来激活一些实验性的或很少需要的特性,另外有一些是用来取消某些功能。要尽量谨慎使用。详细见文档。
    • modules.txt:
      这个文件讲述如何自己配置各个模块,不需要掌握。
    • config的include目录下的文件:
      • osconfig.h:这个文件是必须包含在所有.h .c文件中的.其中指出在win32环境下包含 "dcmtk/config/cfwin32.h"文件
      • cfwin32.h:包含了大量的宏定义。***如果需要查找某个宏的定义,可到这个文件中查找***

 

3.ofstd程序包

ofstd:作为一般目的的类库。
这个模块包含了一般目的的类库,这些类所描述的对象概念并非在Dicom标准中特有。它们广泛的在toolkit中使用。主要包含下面的类

  • OFCommandLine:处理命令行参数,头文件在ofcmdln.h。***详情需要结合具体的代码来理解***
  • OFCondition:描述条件码的一般类。头文件在ofcond.h。***详情需要结合具体的代码来理解***
  • OFConsole:是一个singleton(单例)类。提供线程安全的对标准输出流和错误流的访问。允许以多线程的方式同时创建输出。
  • OFList:是一个双向链表模板类,接口是STL list类中的一个子集。头文件在oflist.h。
  • OFStack:是一个堆栈模板类,接口是STL stack类中的一个子集。头文件在ofstack.h.
  • OFStandard:包含大量帮助函数组成的类,用来包含大量“全局”帮助函数。注意全部都是静态函数。其中的一些函数实现调用了windows API函数,如fileexists()。头文件在ofstd.h。
  • OFString:一个简单的string类,实现了std::string的一个子集,没有iterator或trait,在速度上也没有优化。头文件在ofstring.h

 

4.dcmdata程序包

dcmdata:一个数据编码/解码库和可用的工具.
这个模块包含了一些类来管理Dicom数据结构和文件。同时它也提供了对DICOMDIR文件的支持以满足Dicom storage media(存储介质)的需要。

主要的接口类有:

  • DcmFileFormat:a class handling the DICOM file format (with meta header) 。头文件在dcfilefo.h。
  • DcmDataset:a class handling the DICOM dataset format (files without meta header) 。头文件在dcdatset.h.
  • DcmItem:a class representing a collection of DICOM elements。头文件在dcitem.h。
  • DcmElement:abstract base class for all DICOM elements。头文件在dcelem.h。
  • DcmAttributeTag/DcmByteString/DcmFloatingPointDouble/DcmFloatingPointSingle/DcmOtherByteOtherWord/DcmSequenceOfItems/DcmSignedLong/DcmSignedShort/DcmUnsignedLong/DcmUnsignedShor
工具:这个模块包含了下面的命令行工具:
dcm2xml: Convert DICOM file and data set to XML
dcmconv: Convert DICOM file encoding
dcmcrle: Encode DICOM file to RLE transfer syntax
dcmdrle: Decode RLE-compressed DICOM file
dcmdump: Dump DICOM file and data set
dcmftest: Test if file uses DICOM part 10 format
dcmgpdir: Create a general purpose DICOMDIR
dcmodify: Modify DICOM files
dump2dcm: Convert ASCII dump to DICOM file
xml2dcm: Convert XML document to DICOM file or data set
例一: 调入一个DICOM文件,输出病人姓名:
DcmFileFormat fileformat;
OFCondition status = fileformat.loadFile("test.dcm");
if (status.good())
{OFString patientsName;if (fileformat.getDataset()->findAndGetOFString(DCM_PatientsName, patientsName).good()){cout << "Patient's Name: " << patientsName << endl;} else{cerr << "Error: cannot access Patient's Name!" << endl;} 
elsecerr << "Error: cannot read DICOM file (" << status.text() << ")" << endl;
例二:创建一个DICOM dataset数据集,并保存为文件
char uid[100];
DcmFileFormat fileformat;
DcmDataset *dataset = fileformat.getDataset();
dataset->putAndInsertString(DCM_SOPClassUID, UID_SecondaryCaptureImageStorage);
dataset->putAndInsertString(DCM_SOPInstanceUID, dcmGenerateUniqueIdentifier(uid, SITE_INSTANCE_UID_ROOT));
dataset->putAndInsertString(DCM_PatientsName, "Doe^John");
dataset->putAndInsertUint8Array(DCM_PixelData, pixelData, pixelLength);
OFCondition status = fileformat.saveFile("test.dcm", EXS_LittleEndianExplicit);
if (status.bad())cerr << "Error: cannot write DICOM file (" << status.text() << ")" << endl;
例三:如何为多个文件创建一般目的的DICOMDIR
DicomDirInterface dicomdir;
OFCondition status = dicomdir.createNewDicomDir();
if (status.good())
{while ( /* there are files */ )dicomdir.addDicomFile( /* current filename */ );status = dicomdir.writeDicomDir();if (status.bad())cerr << "Error: cannot write DICOMDIR (" << status.text() << ")" << endl;
} 
elsecerr << "Error: cannot create DICOMDIR (" << status.text() << ")" << endl;

 

5.dcmimgle程序包

dcmimgle是一个图像处理库和可用的工具模块,它包括了对DICOM单色图像的访问和显示。对颜色图像的支持由dcmimage模块提供,对JPEG压缩图像的支持由dcmjpeg模块支持。
主要接口类:

  • DicomImage: 为dcmimgle/dcmimage模块提供接口类。主要目的是图像显示。在dcmimage.h中定义
  • DiDisplayFunction: Class to handle hardcopy and softcopy device characteristics file and manage display LUTs (for calibration). 在didispfn.h中定义。
可用工具:
  • dcmdspfn: Export standard display curves to a text file
  • dcod2lum: Convert hardcopy characteristic curve file to softcopy format
  • dconvlum: Convert VeriLUM files to DCMTK display files
例一: 载入一幅DICOM单帧单色图像,并显示其像素数据
DicomImage *image = new DicomImage("test.dcm");
if (image != NULL)
{if (image->getStatus() == EIS_Normal){if (image->isMonochrome()){image->setMinMaxWindow();Uint8 *pixelData = (Uint8 *)(image->getOutputData(8 /* bits */));if (pixelData != NULL){/* do something useful with the pixel data */}}} elsecerr << "Error: cannot load DICOM img(" << DicomImage::getString(image->getStatus()) << ")" << endl;
}
delete image;

 

6.dcmimage程序包

dcmimage模块为dcmimgle模块提供对彩色图像的支持。对单色图像的支持由dcmimgle提供,对JPEG压缩图像的支持由dcmjpeg模块支持。
主要接口类:

  • DicomImage: 在dcmimgle中已介绍。
工具:
  • dcm2pnm: Convert DICOM images to PPM/PGM, PNG, TIFF or BMP
  • dcmquant: Convert DICOM color images to palette color
  • dcmscale: Scale DICOM image
举例: 载入一幅DICOM单帧图像(单色或彩色),并显示其像素数据
#include "diregist.h"   /* required to support color images */
DicomImage *image = new DicomImage("test.dcm");
if (image != NULL)
{if (image->getStatus() == EIS_Normal){Uint8 *pixelData = (Uint8 *)(image->getOutputData(8 /* bits per sample */));if (pixelData != NULL){/* do something useful with the pixel data */}} 
elsecerr << "Error: cannot load DICOM img (" << DicomImage::getString(image->getStatus()) << ")" << endl;
}
delete image;

 

7.dcmjpeg程序包

dcmjpeg提供了一个压缩/解压缩库以及可用工具。该模块包含一些类,可将DICOM图像对象在非压缩和JPEG压缩表示(传输协议)之间转换。无失真和有失真JPEG处理都被支持。这个模块实现了一族codec(编码解码器,由DcmCodec类派生而来),可以将这些codec在codec list中注册,codec list是由dcmdata模块保存的。
主要接口类:

  • DJEncoderRegistration: 一个singleton(单例)类,为所有受支持的JPEG处理注册编码器。在djencode.h中定义。
  • DJDecoderRegistration: 一个singleton(单例)类,为所有受支持的JPEG处理注册解码器。在djdecode.h中定义。
  • DJCodecEncoder: JPEG编码器的一个抽象codec类。This abstract class contains most of the application logic needed for a dcmdata codec object that implements a JPEG encoder using the DJEncoder interface to the underlying JPEG implementation. This class only supports compression, it neither implements decoding nor transcoding. 在djcodece.h中定义
  • DJCodecDecoder: JPEG解码器的一个抽象codec类。This abstract class contains most of the application logic needed for a dcmdata codec object that implements a JPEG decoder using the DJDecoder interface to the underlying JPEG implementation. This class only supports decompression, it neither implements encoding nor transcoding.
工具:
  • dcmcjpeg: Encode DICOM file to JPEG transfer syntax
  • dcmdjpeg: Decode JPEG-compressed DICOM file
  • dcmj2pnm: Convert DICOM images to PGM, PPM, BMP, TIFF or JPEG
  • dcmmkdir: Create a DICOMDIR file

 

例1:用无失真JPEG压缩一幅DICOM图像文件

DJEncoderRegistration::registerCodecs(); // register JPEG codecs
DcmFileFormat fileformat;
if (fileformat.loadFile("test.dcm").good())
{DcmDataset *dataset = fileformat.getDataset();DcmItem *metaInfo = fileformat.getMetaInfo();DJ_RPLossless params; // codec parameters, we use the defaults// this causes the lossless JPEG version of the dataset to be createddataset->chooseRepresentation(EXS_JPEGProcess14SV1TransferSyntax, ¶ms);// check if everything went wellif (dataset->canWriteXfer(EXS_JPEGProcess14SV1TransferSyntax)){// force the meta-header UIDs to be re-generated when storing the file// since the UIDs in the data set may have changeddelete metaInfo->remove(DCM_MediaStorageSOPClassUID);delete metaInfo->remove(DCM_MediaStorageSOPInstanceUID);// store in lossless JPEG formatfileformat.saveFile("test_jpeg.dcm", EXS_JPEGProcess14SV1TransferSyntax);}
}   
DJEncoderRegistration::cleanup(); // deregister JPEG codecs
例2: 解压缩一幅JPEG压缩的DICOM图像文件
DJDecoderRegistration::registerCodecs(); // register JPEG codecs
DcmFileFormat fileformat;
if (fileformat.loadFile("test_jpeg.dcm").good())
{DcmDataset *dataset = fileformat.getDataset();// decompress data set if compresseddataset->chooseRepresentation(EXS_LittleEndianExplicit, NULL);// check if everything went wellif (dataset->canWriteXfer(EXS_LittleEndianExplicit)){fileformat.saveFile("test_decompressed.dcm", EXS_LittleEndianExplicit);}
}    
DJDecoderRegistrati

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/436051.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

edusoho linux 500错误,EduSoho网校系统如何处理500 Internal Server Error? - EduSoho官网

500 代表着服务器处理异常&#xff0c;因此需要找出服务报的异常。如何找出异常&#xff1f;根据框架提供的机制&#xff0c;只需要在web/app.php中将开发模式打开&#xff0c;就可以看到具体异常。$kernel new AppKernel(prod, false);改成$kernel new AppKernel(prod, true…

SQL大全

--语 句              功 能 --数据操作 SELECT   --从数据库表中检索数据行和列 INSERT   --向数据库表添加新数据行 DELETE   --从数据库表中删除数据行 UPDATE   --更新数据库表中的数据 --数据定义 CREATE TABLE  --创建一个数据库表 …

设计模式C++实现(7)——装饰模式

装饰模式&#xff1a;动态地给一个对象添加一些额外的职责。就增加功能来说&#xff0c;装饰模式相比生成子类更为灵活。有时我们希望给某个对象而不是整个类添加一些功能。比如有一个手机&#xff0c;允许你为手机添加特性&#xff0c;比如增加挂件、屏幕贴膜等。一种灵活的设…

【转】dcmtk程序包综述(2)!!!!!

转自&#xff1a;https://shenchunxu.blog.csdn.net/article/details/70054161 有删改 1.dcmnet程序包 dcmnet是一个网络库及可用工具。 该模块包含了实现DICOM网络通信的所有函数集&#xff0c;即&#xff1a;DICOM上层有限状态机(DICOM Upper Layer Finite State Machine)&…

较为周全的Asp.net提交验证方案 (下)

接上篇。 下面要对这个生成的“提交验证”类进行功能扩展&#xff0c;通过.Net的“部分类”或“扩展方法”技术都可以轻松实现&#xff0c;这里采用的是“部分类”技术&#xff1a; 引用生成的ADO.NET Entity Framework数据模型的命名空间&#xff0c;且声明为部分类。 书写静态…

linux 14.04安装方法,Ubuntu 14.04 安装配置GNOME经典界面

Ubuntu 14.04上基本完美支持GNOME经典界面&#xff0c;安装配置步骤如下&#xff1a;1. 安装gnome-session-flashbacksudo apt-get install gnome-session-flashback这个包安装后&#xff0c;注销后&#xff0c;在登录界面就能选择GNOME Flashback (Compiz)这个桌面环境了。2. …

设计模式C++实现 —— 策略模式

策略模式是指定义一系列的算法&#xff0c;把它们一个个封装起来&#xff0c;并且使它们可相互替换。本模式使得算法可独立于使用它的客户而变化。也就是说这些算法所完成的功能一样&#xff0c;对外的接口一样&#xff0c;只是各自实现上存在差异。用策略模式来封装算法&#…

【转】DIB位图(Bitmap)的读取和保存

转自&#xff1a;https://www.cnblogs.com/wangguchangqing/p/5417444.html 设备无关位图&#xff08;Device Independent Bitmap&#xff09;是可以保存在磁盘的位图文件&#xff0c;可以从磁盘读取到内存或者从内存保存到磁盘上。它的文件结构是标准化的&#xff0c;可以在W…

16进制字符串转化为10进制数

同学在MSN CDC电话面试&#xff08;可惜我在被面试的时候全然没有这么具体的问题了&#xff1a;&#xff09;&#xff09;中的一个题目&#xff1a;将16进制的字符串转化为10进制数字&#xff0c;例如“1A”&#xff0c;则对应26。题目很简单&#xff0c;实现起来也容易&#x…

arch linux 入门,arch linux 从来就不是给新手入门用的

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼在学生的时候&#xff0c;常会有些科目议题难&#xff0c;大部分的人死命地猛读&#xff0c;却也考得低分&#xff1b;也是会有够聪明又考的高分的人&#xff0c;轻描淡写地说&#xff1a;没时间读&#xff0c;随便看一下&#xff…

【转】DCMTK各模块说明!!!!!!!

转自&#xff1a;https://blog.csdn.net/Kelvin_Yan/article/details/50765693 有删改 原文来自wiki DCMTK&#xff1a;http://support.dcmtk.org/redmine/projects/dcmtk/wiki/modules 各模块说明 These are the modules of the public DCMTK toolkit (version 3.6.0): 关…

IT农民工如何来美国工作

经历一年多的等待与折腾&#xff0c;终于来美国工作了。自打进入IT这一行那天起&#xff0c;就梦想着有一天能在硅谷的顶尖的IT公司上班&#xff0c;没想到梦想就这么成真了。当然&#xff0c;我的梦想不算远大。但是我觉得人的梦想是随着成长一点一点变大的。伟人们的远大理想…

【转】DICOM医学图像处理:基于DCMTK工具包学习和分析worklist

转自&#xff1a;https://blog.csdn.net/zssureqh/article/details/38775315 背景&#xff1a; DICOM3.0协议中有介绍关于worklist的部分。简而言之&#xff0c;worklist可以看做是放射科设备从医院RIS系统中自动读取患者信息的一种“通信协议”&#xff0c;可以指存储在RIS系…

libc.so.6linux查找,Linux中提示:/lib64/libc.so.6: version `GLIBC_2.17' not found 的解决办法...

昨天在服务器上安装好node之后&#xff0c;提示这个错误&#xff1a;./node: /lib64/libc.so.6: version GLIBC_2.17 not found (required by ./node)&#xff0c;今天把解决过程整理一下一、查看系统中可使用的glibc版本//使用strings命令查看strings /lib64/libc.so.6 |grep …

linux将汇编转为机器码,汇编语言 高级语言 机器语言 本地代码

不管是什么语言&#xff0c;最终都会转化为机器语言(本地代码)(机器码)&#xff0c;计算机程序的运行最终仍是以机器语言(本地代码)(机器码)运行的。java汇编语言&#xff1a;linux汇编语言是低级编程语言&#xff0c;不像高级语言有跨平台性&#xff0c;首先&#xff0c;CPU的…

【转】关于DCMTK中像素存储以及getoutdata()函数的使用

转自&#xff1a;https://blog.csdn.net/ancewer/article/details/73277895 有删改 当你看这个帖子的时候&#xff0c;假设你也因为这个问题而感到困惑。 在使用这个函数的时候纠结了很久&#xff0c;各种google、百度都没查到相关资料&#xff0c;测试了好多次&#xff0c;并…

【Visual C++】游戏开发笔记三十五 站在巨人的肩膀上:游戏引擎导论

看到在留言中很多朋友提到不太清楚DirectX与游戏引擎的区别的问题&#xff0c;在这里浅墨就专门把自己对游戏引擎的一些理解写成一篇文章&#xff0c;作为我们《Visual C游戏开发》专栏的游戏引擎导论&#xff0c;也希望能通过这篇文章&#xff0c;能让大家有所启发&#xff0c…

String ... String 三个点 jdk1.5的特性.才知道

String ... String 三个点 jdk1.5的特性.才知道 String... excludeProperty表示不定参数&#xff0c;也就是调用这个方法的时候这里可以传入多个String对象。public static void main(String[] args) {//测试&#xff0c;传入多个参数test("hello", "world"…

c语言大数相加oj,郑州轻工业大学oj题解(c语言)论如何正确的提高正确率:水题合集(四)...

好像离上一篇水题篇过去已经快半个月了~也是好久没有发过这些简单又有趣的题目了呢&#xff0c;今天想起来就总结几道吧。今天是看龙族的一天~ 花了一下午时间把《龙族2》看了2/3&#xff0c;看书的时间真的过的飞快&#xff0c;听着歌翻着书&#xff0c;一会4.5个小时就过去了…

【转】DICOM:DICOM Print服务中PresentationContext协商之 MetaSOPClass与SOPClass对比分析!!!!!!!!

转自&#xff1a;https://zssure.blog.csdn.net/article/details/45119841 背景&#xff1a; 最近项目中遇到的实际问题较多&#xff0c;且大多是较隐蔽的、不易被发现的错误。究其根源来看&#xff0c;还是对DICOM3.0协议中的细节掌握不够仔细&#xff0c;因而导致在实际编码…