Grassroots DICOM (GDCM) is a cross-platform library written in C++ for DICOM medical files. It's automatically wrapped to Python/C#/Java & PHP (using swig). It supports RAW, JPEG (lossy/lossless), J2K, JPEG-LS, RLE and deflated. Parts 3, 6 & 7 of the DICOM standard are included as XML files. GDCM can be used to build a JPIP or WADO server. Questions about just using the bundled applications are off-topic for Stack Overflow, unless programming specific.
Questions tagged [gdcm]
100 questions
0
votes
1 answer
GDCM link error with c++
I am trying to check my gdcm installation for the first time. i am unable to build any of the example files. I have tried to separately build file named ReadAndDumpDICOMDIR.cxx (renamed to main.cpp):
#include
#include…

Maelstorm
- 580
- 2
- 10
- 29
0
votes
2 answers
vtkgdcmimagereader for volume rendering
I want to read a series of 2D dicom images. Then, I'll display it as a 3D volume. For that, I followed this steps:
1- ipp sorter
2- setfilenames
3- vtkimagechangeinformation
After these, I tried to visualize them using vtkimageviewer2.
I'm sending…

TahaYusuf
- 335
- 3
- 5
- 16
0
votes
1 answer
Error in building itk with GDCM git repository
I build ITK with gdcm official release for windows. But its not having some of file that I'm using in further coding. So I have to use git version of gdcm cause its having those which I needed but following error encountered when I am trying to…

QT-ITK-VTK-Help
- 548
- 2
- 6
- 19
0
votes
1 answer
Cmake Error for ITK with GDCM configuration
Following error found while configuring ITK with GDCM2.2
CMake Error at Modules/ThirdParty/GDCM/itk-module-init.cmake:5 (find_package):
By not providing "FindGDCM.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package…

QT-ITK-VTK-Help
- 548
- 2
- 6
- 19
0
votes
1 answer
gdcm library - transfer syntax
Does GDCM library support the following DICOM transfer syntaxes:
1.2.840.10008.1.2.4.53 JPEG Spectral Selection, Nonhierarchical (Processes 6 & 8)
1.2.840.10008.1.2.4.55 JPEG Full Progression, Nonhierarchical (Processes 10 & 12)
If yes, could…

Signum
- 845
- 1
- 10
- 33
0
votes
1 answer
convert a uint16 dicom image to qimage
i tried to convert a dicom image read from a gdcm image reader which has photometric interpretation as 'monochrome2' and pixel format as unsigned int 16 or uint16, i tried the following code over it, but is not giving the required image, please…

Srijan Tiwari
- 1
- 1
-1
votes
2 answers
Installing gdcm to CentOS 7
I am a beginner about compiling from source, so I need your help!
As I need to execute gdcmdump on CentOS 7, I am trying to install gdcm.
First I tried to
git clone --branch release git://git.code.sf.net/p/gdcm/gdcm
but it failed. So I cloned the…

nebuntu
- 1
- 1
-1
votes
1 answer
Building gdcm-2.4.3 with CMake 3.2.2
I have previously downloaded gdcm-2.4.3 and built it using CMake with the following command.
cmake -G "Visual Studio 10 2010 Win64" ..\gdcm-2.4.3
Which worked fine. I now want to repeat this but now it says it can't find a bunch of header files…

PaulN
- 329
- 2
- 6
- 13
-2
votes
1 answer
Why these dicom files exported by GDCM cannot be recongnized correctly by 3D Slicer?
I exported multiple slices of the same series (and the same study) using GDCM in C++. The data is attached here.
But it seems that 3D Slicer cannot recognize these files correctly:
Each dcm file was recognized as a volume
After import, nothing…

Shannon
- 323
- 1
- 11
-2
votes
2 answers
How to run gdcm examples in ubuntu?
I am trying to run this simple example in GDCM. I have installed the library c++ version and the installation works perfectly fine but I am not able to figure out how to compile and run a example.
#include "gdcmReader.h"
#include…

ArafatK
- 740
- 6
- 25