Hello,
I can query the images from orthcan pacs, but unfortunately I can’t retrieve them. I did all my best in order to fix this problem but I can’t find a solution.
Note: I have attached a screenshot of my conf.
Regards,
And what is the configuration of Orthanc?
Please carefully follow the “troubleshooting DICOM” guide of the Orthanc Book:
https://orthanc.chu.ulg.ac.be/book/faq/dicom.html
Also, please do not open multiple threads about the same topic:
https://groups.google.com/d/msg/orthanc-users/AHx5swG293o/t6D0KarADQAJ
Hello,
Regarding to retrieving problem, I have found the following error which occur in the process of transferring images, so if anyone has the solution so plz send it to me
Regards,
W0819 00:10:47.891855 OrthancMoveRequestHandler.cpp:175] Move-SCU request received for AET “QTDCM”
I0819 00:10:47.891890 OrthancMoveRequestHandler.cpp:183] (0008,0052) QueryRetrieveLevel = SERIES
I0819 00:10:47.891925 OrthancMoveRequestHandler.cpp:183] (0020,000e) SeriesInstanceUID = 1.3.51.5146.12471.20080821.1080355
I0819 00:10:47.892153 OrthancMoveRequestHandler.cpp:67] Sending resource 8f5ff739-19c38b2e-4f0670a6-2e312b84-6dea2c39 to modality “QTDCM”
I0819 00:10:47.893097 DicomUserConnection.cpp:888] Opening a DICOM SCU connection from AET “ORTHANC” to AET “QTDCM” on host 192.168.1.14:11133 (manufacturer: MedInria)
I0819 00:10:48.913258 DicomUserConnection.cpp:296] Change in the transfer syntax: the C-Store associated must be renegotiated
I0819 00:10:48.914862 DicomUserConnection.cpp:310] Renegotiating a C-Store association due to a change in the parameters
I0819 00:10:48.914917 DicomUserConnection.cpp:888] Opening a DICOM SCU connection from AET “ORTHANC” to AET “QTDCM” on host 192.168.1.14:11133 (manufacturer: MedInria)
W: DIMSE Warning: (ORTHANC,QTDCM): sendMessage: unable to convert dataset from ‘JPEG 2000 (Lossless or Lossy)’ transfer syntax to ‘Little Endian Explicit’
E0819 00:10:49.973661 DicomUserConnection.cpp:162] DicomUserConnection: DIMSE Failed to send message
E0819 00:10:49.974357 MoveScp.cpp:185] IMoveRequestHandler Failed: Error in the network protocol
I0819 00:10:50.041167 CommandDispatcher.cpp:860] Peer aborted Association (or never connected)
I0819 00:10:50.041236 CommandDispatcher.cpp:872] Association Aborted
I0819 00:10:54.988215 ReusableDicomUserConnection.cpp:94] Closing the global SCU connection after timeout
Seems like MedInria does not support JPEG 2000.
Hello,
So what can I do in order to handle this problem, the developer of orthanc have said that orthanc works smoothly with medinria.
Regards
That is a problem with the way the specific dicom images you are trying to retrieve are encoded and Meinria, not Orthanc.
If you tried to send these images directly to Medinria, without orthanc, the same problems would ensue.
As far as I’m aware Orthanc does not have (yet?) encoding conversion capabilities.
So your options are to:
Fix the encoding at the source (if possible it is by far the best option), change the modality encoding options;
Use some other pacs that has the capability to reencode the images, with JPEG 2000 there are a lot of problems with those but it is possible;
Design a script, Lua or external (python would be my choice), to get the images, re-encode, resend to Orthanc and then to Medinra. This will take some work, but if the first option is not viable it would solve everything without another install and configuration.
Regards,
That is a problem with the way the specific dicom images you are trying to retrieve are encoded and Meinria, not Orthanc.
If you tried to send these images directly to Medinria, without orthanc, the same problems would ensue.
I fully agree with Chico’s and Robert’s answers: medInria does not seem to able to receive DICOM files encoded using the JPEG2000 transfer syntax through the DICOM network protocol.
This is not a problem on the Orthanc side, especially if such network transfers work fine with RadiAnt, as you reported here:
https://groups.google.com/d/msg/orthanc-users/AHx5swG293o/Jeb7NDk7DgAJ
You must be aware of the fact that even if Slicer/medInria are able to open JPEG2000 DICOM files on the disk, this does not imply that they can receive files through the DICOM network protocol. Please get in touch with the community of these projects to know more about this topic, we cannot answer on their behalf.
As far as I’m aware Orthanc does not have (yet?) encoding conversion capabilities.
We are indeed currently working on the possibility of creating plugins to transparently transcode DICOM files to other transfer syntaxes if required as part of a C-Store.
So your options are to:
Fix the encoding at the source (if possible it is by far the best option), change the modality encoding options;
Use some other pacs that has the capability to reencode the images, with JPEG 2000 there are a lot of problems with those but it is possible;
For this to work, you might also have to set the “Jpeg2000TransferSyntaxAccepted” configuration option of Orthanc to “false”, so as to prevent your original PACS sending JPEG2000 images to Orthanc, and to force the original PACS to transcode the images:
https://orthanc.chu.ulg.ac.be/book/users/configuration.html
Regards,
Sébastien-