Anyone know of a program to read dicom files on Linux?
I tried both cinepaint and gimp which claim to support dicom files, but cinepaint crashes and gimp says
Procedure 'file-dicom-load' returned no return values
Any help is appreciated.
Paolo
On Sat, Jan 2, 2010 at 7:12 AM, Paolo Galtieri pgaltieri@gmail.com wrote:
Anyone know of a program to read dicom files on Linux?
I tried both cinepaint and gimp which claim to support dicom files, but cinepaint crashes and gimp says
Procedure 'file-dicom-load' returned no return values
Any help is appreciated.
Paolo
Have you successfully opened the files before? Years ago I wrote a simple python based image viewing program to do just this for work and imported ImageMagick to open the files and it worked fine. You can install ImageMagick and use the "display" command line program or use "convert" to another format.
Richard
The CD came with its own image display software which runs on Windows. However the software locks up when I run it on Windows.
When I try your suggestion I get:
display: magick/list.c:485: GetFirstImageInList: Assertion `images->signature == 0xabacadabUL' failed. Aborted (core dumped)
running file on the image I get:
1.dicom: DICOM medical imaging data
Is it possible that this is a proprietary format?
Paolo
On Sat, Jan 2, 2010 at 9:32 AM, Richard Shaw hobbes1069@gmail.com wrote:
On Sat, Jan 2, 2010 at 7:12 AM, Paolo Galtieri pgaltieri@gmail.com wrote:
Anyone know of a program to read dicom files on Linux?
I tried both cinepaint and gimp which claim to support dicom files, but cinepaint crashes and gimp says
Procedure 'file-dicom-load' returned no return values
Any help is appreciated.
Paolo
Have you successfully opened the files before? Years ago I wrote a simple python based image viewing program to do just this for work and imported ImageMagick to open the files and it worked fine. You can install ImageMagick and use the "display" command line program or use "convert" to another format.
Richard
-- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
On Sat, Jan 2, 2010 at 7:51 AM, Paolo Galtieri pgaltieri@gmail.com wrote:
The CD came with its own image display software which runs on Windows. However the software locks up when I run it on Windows.
When I try your suggestion I get:
display: magick/list.c:485: GetFirstImageInList: Assertion `images->signature == 0xabacadabUL' failed. Aborted (core dumped)
running file on the image I get:
1.dicom: DICOM medical imaging data
Is it possible that this is a proprietary format?
Paolo
I know I've successfully used it so if it's having issues with the files as well the problem may lay with the files themselves. This[1] site has some additional information, software, and some samples dicom files you can try for reference. Good luck!
Richard
Am Samstag, den 02.01.2010, 09:12 -0400 schrieb Paolo Galtieri:
Anyone know of a program to read dicom files on Linux?
http://aeskulap.nongnu.org http://www.orcero.org/irbis/kradview/index.html http://www.sph.sc.edu/comd/rorden/dicom.html#links
Regards, Christoph
On 01/02/2010 08:12 AM, Paolo Galtieri wrote:
I tried both cinepaint and gimp which claim to support dicom files, but cinepaint crashes and gimp says
Procedure 'file-dicom-load' returned no return values
Check out this one:
http://dicom.offis.de/dcmtk.php.en
I've been out of the field for a while, but it used to be well-considered. That being said, we had a smart guy on staff whose full-time job it was to figure out how to parse supposedly-standard DICOM files coming out of random scanners from myriad vendors.
-Bill
On 01/06/2010 06:12 PM, Bill McGonigle wrote:
On 01/02/2010 08:12 AM, Paolo Galtieri wrote:
I tried both cinepaint and gimp which claim to support dicom files, but cinepaint crashes and gimp says
Procedure 'file-dicom-load' returned no return values
Check out this one:
http://dicom.offis.de/dcmtk.php.en
I've been out of the field for a while, but it used to be well-considered. That being said, we had a smart guy on staff whose full-time job it was to figure out how to parse supposedly-standard DICOM files coming out of random scanners from myriad vendors.
-Bill
I tried it, but couldn't get the source rpm to build on F12:
c++ -DHAVE_CONFIG_H -DNDEBUG -c -I. -I. -I../include -I../../config/include -I../../ofstd/include -I../../dcmdata/include -I../../dcmnet/include \ -O -I/usr/include/libxml2 -D_REENTRANT -D_XOPEN_SOURCE_EXTENDED -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_BSD_COMPAT -D_OSF_SOURCE -D_POSIX_C_SOURCE=199506L -Wall tlslayer.cc tlslayer.cc: In constructor ‘DcmTLSTransportLayer::DcmTLSTransportLayer(int, const char*)’: tlslayer.cc:195: error: invalid conversion from ‘const SSL_METHOD*’ to ‘SSL_METHOD*’ tlslayer.cc:198: error: invalid conversion from ‘const SSL_METHOD*’ to ‘SSL_METHOD*’ tlslayer.cc:201: error: invalid conversion from ‘const SSL_METHOD*’ to ‘SSL_METHOD*’ make[2]: *** [tlslayer.o] Error 1 make[2]: Leaving directory `/root/rpmbuild/BUILD/dcmtk-3.5.4/dcmtls/libsrc' make[1]: *** [libsrc-all] Error 2 make[1]: Leaving directory `/root/rpmbuild/BUILD/dcmtk-3.5.4/dcmtls' make: *** [dcmtls-all] Error 2 error: Bad exit status from /var/tmp/rpm-tmp.1DAivb (%build)
I don't know C++ so I haven't tried to fix it.
I finally resorted to using nconvert to convert the dicom files to tiff. The conversion loses all the medical related data, but at least I can view the images.
Paolo