I am trying to use the command Identify -verbose to get the image proprieties from a DICOM image from a linux terminal. However, an error is occurring, like:
identify.im6: irregular channel geometry not supported `/tmp/magick-JJeAk1BV' @ error/jp2.c/ReadJP2Image/532.
Here is a image from my linux terminal
https://webclient.amplisoftware.com.br/ ... U2Md9x2jqf
I am completely sure that it is a DICOM image, I need to get the image proprieties from this image.
Thanks in advance.
Error DICOM images -> irregular channel geometry not supported
Re: Error DICOM images -> irregular channel geometry not supported
Can you share your DICOM image? Please make sure you anonymize it before you share it. Feel free to send me a PM with a link to the file if you don't want to share it publicly.
What is your ImageMagick version and your operating system?
What is your ImageMagick version and your operating system?
Re: Error DICOM images -> irregular channel geometry not supported
UPDATE: I did some tests using a new version from ImageMagick, but I still have some problems.
This follow link contains DICOM images and a screnshot from my terminal.
https://webclient.amplisoftware.com.br/ ... 7OQKtQmHuX
The new error message is:
[ beta | root > /tmp ]# identify -verbose 3BB55E03 3BB55E0C 3BB55E28
identify: no decode delegate for this image format `J2K' @ error/constitute.c/ReadImage/501.
ImageMagick version:
[ beta | root > /tmp ]# identify -version
Version: ImageMagick 6.9.2-6 Q16 x86_64 2015-11-13 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules OpenMP
Delegates (built-in): bzlib cairo djvu fftw fontconfig freetype fpx gslib jng jpeg lcms ltdl lzma pangocairo png ps tiff webp wmf x xml zlib
My operating system is a CentOS Linux release 7.1.1503 (Core)
This follow link contains DICOM images and a screnshot from my terminal.
https://webclient.amplisoftware.com.br/ ... 7OQKtQmHuX
The new error message is:
[ beta | root > /tmp ]# identify -verbose 3BB55E03 3BB55E0C 3BB55E28
identify: no decode delegate for this image format `J2K' @ error/constitute.c/ReadImage/501.
ImageMagick version:
[ beta | root > /tmp ]# identify -version
Version: ImageMagick 6.9.2-6 Q16 x86_64 2015-11-13 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules OpenMP
Delegates (built-in): bzlib cairo djvu fftw fontconfig freetype fpx gslib jng jpeg lcms ltdl lzma pangocairo png ps tiff webp wmf x xml zlib
My operating system is a CentOS Linux release 7.1.1503 (Core)
Re: Error DICOM images -> irregular channel geometry not supported
PROBLEM SOLVED
I found a solution to my problem.
I use a command to decompress a compressed DICOM and now It is working perfectly.
The command is:
$ gdcmconv --raw compressed.dcm uncompressed.dcm
See the source: http://gdcm.sourceforge.net/html/gdcmconv.html
So, now I am able to convert, identify... any DICOM image.
Thanks.
I found a solution to my problem.
I use a command to decompress a compressed DICOM and now It is working perfectly.
The command is:
$ gdcmconv --raw compressed.dcm uncompressed.dcm
See the source: http://gdcm.sourceforge.net/html/gdcmconv.html
So, now I am able to convert, identify... any DICOM image.
Thanks.