- 浏览: 3444151 次
- 性别:
- 来自: 苏州
文章分类
最新评论
-
sonichy:
Qt5改动很多,要改改了。
基于QItemDelegate的例子1 SpinBoxDelegate -
我的主页6:
楼主,2.2子查询的分页方式:SELECT * FROM ar ...
Mysql 分页语句Limit用法 -
liguoqi:
非常感谢楼主的用心指导,工具以及图片例子都提供了 赞!
两款免费DCIOM 图像浏览软件介绍和DICOM图像例子供下载 -
liguoqi:
问下这个图片怎么解压损坏呀
两款免费DCIOM 图像浏览软件介绍和DICOM图像例子供下载 -
liguoqi:
楼主讲解的非常详细,还附带工具和图片例子,非常感谢
两款免费DCIOM 图像浏览软件介绍和DICOM图像例子供下载
官方安装DCMTK3.6.0的步骤:
详细中文安装步骤可以参考下面两篇:
BUILDING (Windows) ================== Starting with DCMTK 3.5.4, no project files for Visual Studio are provided anymore. Project files for all supported compilers can be generated with CMake. CMake is a cross-platform, open-source make system which can be used to control the software compilation process using simple configuration files. CMake can be obtained free of charge from http://www.cmake.org/. For configuring the support of external libraries in DCMTK on Windows platforms, the toolkit contains corresponding "CMakeLists.txt" files in all necessary directories. In detail, these "CMakeLists.txt" files will serve as an input to CMake which will generate new ".dsp" and ".dsw" files (or ".sln" for Visual Studio) for all of DCMTK's projects from these files, depending on a configuration which can be adjusted manually by the user. In order to be able to use CMake for configuration purposes in DCMTK, perform the following steps to install CMake on your machine: 1. Go to http://www.cmake.org/ to download the latest release version of CMake for Windows. With regard to a certain CMake version, note that CMake 2.4.8 or later can be used in conjunction with DCMTK. 2. Execute the file which was downloaded to install CMake on your machine. Follow all install instructions appropriately. In order to manually configure the support for the above mentioned external libraries (OpenSSL, zlib, libtiff, libpng and libxml2) through CMake, perform the following steps: 1. Go Start -> Programs -> CMake -> "CMake" or "CMake (cmake-gui)" to start the CMake utility through which the configuration can be done. 2. In the entry field "Where is the source code:" enter the directory in which the DCMTK source code resides, e.g. "C:\dcmtk-3.6.0". 3. In the entry field "Where to build the binaries:" enter the directory in which the libraries and binaries are to be built, e.g. "C:\dcmtk-bin". 4. In the combobox "Build for:" or "Specify the generator for this project:" select the corresponding development environment which shall be used to compile DCMTK. 5. Go "Configure". (CMake will look for a corresponding compiler, read in all of DCMTK's "CMakeLists.txt" files and perform some tests. The variables in the tabular area will be displayed in red. These variables can now be set in order to turn the support for any of the external libraries on or off). 6. Make the corresponding configurations in CMake's user interface. For example, in order to turn on libxml2 support, set the value of variable "DCMTK_WITH_XML" to "ON" and set the value of variable "WITH_LIBXMLINC" to the path where the include files and libraries of libxml2 can be found, e.g. "C:\libxml2-2.7.7". The support of all other external libraries can be turned on in a similar way: libpng support: set "DCMTK_WITH_PNG" to "ON" and set "WITH_LIBPNGINC" e.g. to "C:\libpng-1.4.2" libtiff support: set "DCMTK_WITH_TIFF" to "ON" and set "WITH_LIBTIFFINC" e.g. to "C:\tiff-3.9.2" OpenSSL support: set "DCMTK_WITH_OPENSSL" to "ON" and set "WITH_OPENSSLINC" e.g. to "C:\openssl-1.0.0" zlib support: set "DCMTK_WITH_ZLIB" to "ON" and set "WITH_ZLIBINC" e.g. to "C:\zlib-1.2.5" In order to turn the support of a certain external library off, set the value of the corresponding variable ("DCMTK_WITH_XML", "DCMTK_WITH_PNG", "DCMTK_WITH_TIFF", "DCMTK_WITH_OPENSSL", or "DCMTK_WITH_ZLIB") to "OFF". (Please note that the include files of all external libraries are always expected in a directory named "include" below the directory which is specified in "WITH_LIBXMLINC", "WITH_LIBPNGINC", "WITH_LIBTIFFINC", "WITH_OPENSSLINC", or "WITH_ZLIBINC"). (Please note also that the library files of all external libraries are always expected in directory named "lib" below the directory which is specified in "WITH_LIBXMLINC", "WITH_LIBPNGINC", "WITH_LIBTIFFINC", "WITH_OPENSSLINC", or "WITH_ZLIBINC". Moreover, note that the following filenames must be used for the corresponding lib files: libxml2: "iconv_d.lib" - debug version "iconv_o.lib" - release version (optimized) "libxml2_d.lib" - debug version "libxml2_o.lib" - release version (optimized) libpng: "libpng_d.lib" - debug version "libpng_o.lib" - release version (optimized) libtiff: "libtiff_d.lib" - debug version "libtiff_o.lib" - release version (optimized) openssl: "libeay32_d.lib" - debug version "libeay32_o.lib" - release version (optimized) "ssleay32_d.lib" - debug version "ssleay32_o.lib" - release version (optimized) zlib: "zlib_d.lib" - debug version "zlib_o.lib" - release version (optimized) The debug versions of all libraries must be compiled for the multithread debug version of the runtime (/MTd), the release version must be compiled for the non-debug multithread runtime (/MT). Precompiled versions of all libraries can be downloaded from http://dicom.offis.de/dcmtk). 7. Go "Configure" a second time. (CMake will adjust the configuration according to the displayed specifications). 8. Go "OK" or "Generate". (CMake will generate new project files in the corresponding directories. These files will be adjusted according to the displayed specifications, i.e. support for the external libraries will be turned on or off). Having performed these steps, the Microsoft Visual Studio IDE can be started, DCMTK's workspace file can be opened, and one or more of DCMTK's subprojects can be built. In case you want to build all libraries and applications, mark the "ALL_BUILD" subproject and build it. The "INSTALL" subproject installs the executables, libraries, include, support and documentation files (very similar to "make install-all" on Unix systems). Please note that other Windows compilers, e.g. Borland C++ Builder, are currently not actively supported. However, they may work. Known limitations of DCMTK on the Windows platform. 1. The dcmqrscp tool cannot spark multiple processes. Every association must be handled completely before a new association is possible. 2. On Windows 95, dcmqrscp always uses exclusive file locking (the LockFileEx API call is available on Windows NT only). This is no problem if only one single process exists. 3. Most applications will only work if the computer has configured TCP/IP, a network name and a TCP/IP address. If SLIP or PPP is used the applications can only work if a connection to a provider exists (since the internet addresses and names are given dynamically). 4. Visual C++ contains two different implementations of I/O streams which should never be mixed within one application because this may cause application errors that are hard to find. The old, now deprecated implementation uses the traditional cfront header files <iostream.h> etc. The new implementation uses <iostream> etc. as defined in ANSI/ISO C++. DCMTK can be configured to use either of the two interfaces. This behaviour can be changed in "include/dcmtk/config/osconfig.h" in the build directory where the symbol USE_STD_CXX_INCLUDES is declared. NOTE: Previous releases of DCMTK (3.5.1 and older) used the old interface when compiled with Visual C++ 6.0. When updating software that uses DCMTK as a library, make sure that the use of the iostream library is consistent throughout the complete application!
参考文章:http://support.dcmtk.org/docs/file_install.html
发表评论
-
医学影像期刊总结
2012-06-08 10:41 32351、《中国医学影像学杂志》 是由中华人民共和国卫生部主管、中 ... -
DCMTK3.6.0(MD支持库)安装说明-无图版
2012-06-08 10:07 4879不知道为啥ItEye只能显示日志文字的部分内容,本篇日志完整版 ... -
DCMTK的Lib 引用顺序
2012-06-07 14:24 3325我们知道,在引用lib的时候,只需要配置项目属性 ... -
DCMTK3.5.4与3.6.0版本的区别
2012-06-07 13:30 6676首先要明白DCMTK默认选择的/MT和/MTd的运行时库。 ... -
DCMTK3.6.0 安装失败的说明
2012-06-07 10:59 4336前两天,参考这个例子DCMTK3.6.0 (MT支持库)安装 ... -
DCMTK3.6.0(MD支持库)安装说明
2012-06-07 11:20 26561前言: 虽然写了这么 ... -
DCMTK3.6.0 (MT支持库)安装 完整说明
2012-06-06 11:21 97086月7日 13:58 更新 MD项目的,请参考这篇 《DCMT ... -
DCMTK 安装错误总结
2012-06-05 17:18 0Compilation of DCMTK-based p ... -
dcmtk 3.6.0 error C1083: Cannot open include file: 'iostream.h' 解决办法
2012-06-05 10:36 33282011年1月6日发布的dcmtk 3.6.0版本在编 ... -
defaultlib "library" conflicts with use of other libs; use /NODEFAULTLIB:library
2012-06-04 20:31 8758我在Qt的Gui项目中,加入DCMTK编译后的MD/MDd运行 ... -
warning LNK4098: defaultlib "MSVCRT" conflicts with use of other libs; use /NODE
2012-06-04 19:15 4888刚编译了DCMTK,运行一个小例子,出现如此错误: ... -
VC 运行时库 /MD、/MDd 和 /MT、/MTd
2012-06-04 14:03 27731这里总结下他们的区别,后面的那个'd'是代表DEBUG版本,没 ... -
两款免费DCIOM 图像浏览软件介绍和DICOM图像例子供下载
2012-05-22 14:53 37672最近要开发医学图像处理软件,所以先搜了一些可以读取DCM ...
相关推荐
总结,DCMTK的编译安装涉及多个步骤,包括安装依赖库、编译`libiconv`、配置CMake选项以及编译和安装DCMTK本身。成功安装后,可以通过提供的PHP示例代码了解如何在PHP中使用DCMTK来处理DICOM数据。
**Windows Qt环境下的DCMTK库** DCMTK(DICOM Toolkit)是一个开源软件库,专为处理DICOM(Digital Imaging and ...同时,不断查阅DCMTK的官方文档和社区资源,能帮助你解决遇到的问题,更好地利用这个强大的工具。
1. **下载源码**:首先从官方网站或者GitHub上获取DCMTK的源代码包。 2. **解压和配置**:将下载的源代码包解压到一个合适的目录,然后创建一个构建目录(通常不在源码目录内,以避免污染源码),进入这个构建目录...
1. **下载与解压**: 首先,你需要从官方或者可靠的第三方源下载DCMTK3.6.0的源代码包,并将其解压到一个方便的工作目录。 2. **构建DCMTK**: 使用Visual Studio 2012打开命令行工具,进入DCMTK源码目录,运行CMake...
### DCMTK的生成及加载和一些使用的例子 #### 一、DCMTK简介与功能 DCMTK是由德国OFFIS公司提供的...通过上述步骤,我们可以顺利地在项目中集成DCMTK,并利用其强大的功能处理DICOM文件,实现医学图像的管理与交流。
1. **安装DCMTK**:首先从官方网站下载DCMTK并进行编译安装。 2. **配置VC++环境**:设置项目属性,确保项目能够正确链接DCMTK库。 3. **解析DICOM文件**:利用DCMTK提供的API函数解析DICOM文件,提取出图像数据。 4...
描述中的“直接编译的DCMTK3.5.3,直接可以用”进一步确认了这个版本是可执行的,省去了用户自己编译和配置环境的步骤。 DCMTK 3.5.3是该工具包的一个特定版本,可能包含了自3.5.2版本以来的一些更新和改进,包括...
1. **获取源代码**:首先,你需要从DCMTK的官方网站或者GitHub仓库下载3.6.0版本的源代码压缩包。 2. **解压并配置**:解压下载的文件,进入源代码目录。然后,根据你的操作系统和编译器配置环境变量,如设置CMAKE_...
9. **学习资源**:对于想要深入学习DCMTK的初学者,建议阅读DCMTK的官方文档,参与相关的论坛讨论,或者参考其他开源项目的代码,以获取更多实际应用的例子。 10. **代码组织**:良好的代码组织结构可以使项目更...
对于VS2013用户来说,DCMTK的预编译库可以简化构建过程,避免了手动配置和编译开源代码的繁琐步骤。本资源包含了DCMTK在VS2013下的编译好的库文件,包括`include`目录中的头文件、`lib`目录中的静态和动态链接库以及...
通过以上步骤,您应该能够在VC6.0环境下成功搭建起DCMTK的调试环境,并能够进行基本的开发和调试工作。在实际操作过程中可能会遇到各种具体问题,建议结合官方文档和社区资源进行深入学习和实践。此外,随着技术的...
- **获取DCMTK**:从官方网站下载最新的DCMTK源码,并进行编译配置。 ##### 2. DCMTK的编译与配置 - **配置编译选项**:根据实际需求选择相应的编译选项,如支持多线程等。 - **编译DCMTK**:使用命令行或IDE进行...
在Linux系统中,可以使用包管理器安装,而在Windows或Mac上,需要从其官方网站下载源代码并按照官方指南进行配置和编译。 1. **编译DCMTK**: - 解压DCMTK源代码。 - 打开终端或命令行,进入DCMTK源代码目录。 -...
在开发过程中,首先需要从DCMTK官方网站下载源码和库文件,并使用CMake工具生成适用于Windows平台的工程文件。在VC++环境中编译这些文件,会生成所需的库和头文件。接着,需要在VC++的项目设置中添加这些库文件和...
1. 安装CMake:首先,你需要下载并安装CMake 2.8.6的win32-x86版本,这可以从官方网站或者通过提供的压缩包`cmake-2.8.6-win32-x86.exe`完成。 2. 设置源代码目录:获取DCMTK的源代码,并创建一个空的构建目录,用于...
以下是对安装过程的详细步骤: 1. **安装VS2010** - 安装Visual Studio 2010旗舰版,确保选择了C++组件,因为MITK是基于C++的。 - 将帮助文档安装到D盘,这一步可以根据个人需求选择,不是必须的。 - 安装Visual...
* dcmtk官方文档 * DICOM协议官方文档 * PACS系统官方文档 参考文献 * AFL实战练习:https://blog.csdn.net/kelxLZ/article/details/117827686 * dcmtk模拟PACS调试:...
编译过程中,VS会自动下载一些第三方库,如gdcm、dcmtk、qwt等,确保网络连接畅通。 值得注意的是,原帖建议静态编译,但可能会遇到问题。初次尝试时,建议保留默认动态编译设置,以避免不必要的复杂性。在CMake...
在VC++环境中使用DCMTK来实现DICOM图像的读取和显示主要包括以下几个步骤: 1. **创建DICOM文件对象**:通过 `new DcmFileFormat()` 创建DICOM文件对象。 2. **加载DICOM文件**:调用 `loadFile(filename)` 方法来...