Search found 18 matches

by Andreas Thiel
Mon, 2014-01-27, 14:29
Forum: DCMTK - Installation
Topic: Something about the support library
Replies: 2
Views: 8048

Re: Something about the support library

Sorry, we currently have not win64 library support.
You have to compile it by your own. The compilation instructions are contained in the INSTALL file.
it usually works with VisualStudio 2008 and 2010.
by Andreas Thiel
Wed, 2013-10-23, 09:33
Forum: DCMPRINT
Topic: dcmprint
Replies: 1
Views: 13088

Re: dcmprint

Dear Hadi Dayvary, > I have some question: > Is it possible to use dcmprint as a DICOM paper print server? (ofcource a postscript printer) Yes, that is the main purpose of the DCMPRINT server component (tcpsrv). However, please note that the tool is primarily intended for use under Linux or other Un...
by Andreas Thiel
Tue, 2013-10-22, 12:50
Forum: DCMTK - General
Topic: Importing CT cases with Hounsfield Units
Replies: 3
Views: 4500

Re: Importing CT cases with Hounsfield Units

If you transfer the image to an jpg image, you loose the information about the original Hounsfield values. Because you reduce the image data information from 12bit data to 8 bit gray values. So if you want to re use the original image data, you have to use an DICOM Viewer (or an Viewer with 12 bit s...
by Andreas Thiel
Thu, 2013-08-15, 17:02
Forum: DICOMscope - General
Topic: DICOMScope Java Compilation error
Replies: 4
Views: 14512

Re: DICOMScope Java Compilation error

Is there any reason why you use these very old java version ?
Try:
javac -d ..\DICOMscope dicomscope\DICOMscope.java
in the tkgui directory.
by Andreas Thiel
Mon, 2013-07-22, 08:40
Forum: DCMTK - General
Topic: How to validate a dicom file
Replies: 1
Views: 5002

Re: How to validate a dicom file

Yes, the dcmcheck tool do this: http://www.dcmtk.org/dcmcheck.php.en DCMCHECK currently supports all IODs of the 2003 edition of the DICOM standard But this module is not freely available and must be licensed separately. If you are interested in it you can get a evaluation licenc: http://www.dcmtk.o...
by Andreas Thiel
Thu, 2013-07-18, 17:05
Forum: DCMTK - General
Topic: How to write Modules
Replies: 2
Views: 3375

Re: How to write Modules

In fact you have to add each Type 1 and Type 2 element found in the desciption of the Modules. If elements are found in more the in one module, you have to add this element only one time. The meaning of the element are in the Modules always the same. In your example: In <General Equipment Module> th...
by Andreas Thiel
Thu, 2013-06-27, 10:25
Forum: DCMTK - General
Topic: DCMTK 3.6.0 win32 dcmcjpeg.exe
Replies: 7
Views: 8841

Re: DCMTK 3.6.0 win32 dcmcjpeg.exe

Hi Henning, It is an problem with the private group 0009 (which seems to be an image icon ) in your file. There is a 2. PixelData element in it which can not be compressed. As a workaround: dcmodify -ep US_orig.dcm before compressing. But of course, we have to change our code to handle such problems.
by Andreas Thiel
Thu, 2013-06-27, 09:01
Forum: DCMTK - General
Topic: A strange problem in Release mode
Replies: 2
Views: 3804

Re: A strange problem in Release mode

hemp110 wrote: Is there any difference between exe and running in Visual Studio? Thanks :)
One differnece is the environment: the path where dll will be found differs. But this do not explain your problem.
I will try reproduce your error.
by Andreas Thiel
Thu, 2013-06-27, 08:53
Forum: DCMTK - General
Topic: DCMTK 3.6.0 win32 dcmcjpeg.exe
Replies: 7
Views: 8841

Re: DCMTK 3.6.0 win32 dcmcjpeg.exe

It seems a problem with your spezific Mammofile.
everthing works fine at our site.

Can you send me a download link with the image?

And / our a full dcmdump output?
by Andreas Thiel
Wed, 2013-06-26, 08:40
Forum: DCMTK - General
Topic: MoveSCU and Presentation States
Replies: 6
Views: 6837

Re: MoveSCU and Presentation States

You are using an older dcmtk implementation (OFFIS_DCMTK_354), can you use an actual one. There we can get more logging information.

Furthermore, can you send the log of the receiving application (storescp) or are you using another software as the receiver (MOVE Destination).
by Andreas Thiel
Tue, 2013-06-25, 11:51
Forum: DCMTK - General
Topic: MoveSCU and Presentation States
Replies: 6
Views: 6837

Re: MoveSCU and Presentation States

As I understand you, you ask for the whole Study and receives only the series with CT / MR inside. Correct?

Are you shure, that your PACS are providing GrayscaleSoftcopyPresentationStateStorage during association negotiation?

Did you try to make the movescu on series/instance level?
by Andreas Thiel
Thu, 2013-05-30, 07:01
Forum: DCMTK - General
Topic: Why should I add my pixel values of dicom image to 2^15?
Replies: 17
Views: 22632

Re: Why should I add my pixel values of dicom image to 2^15?

then they have always bigger than 2^15! This is the exact thing that makes me surprised. When I subtract the value from 2^15 then I should be able to see the expected image in good option. Maybe converting from signed to unsigned cause to make for me this mystery :!: . This behaviour is correct, be...
by Andreas Thiel
Wed, 2013-05-29, 15:12
Forum: DCMTK - General
Topic: Why should I add my pixel values of dicom image to 2^15?
Replies: 17
Views: 22632

Re: Why should I add my pixel values of dicom image to 2^15?

What are the values of:
(0028,1052) Rescale Intercept
(0028,1053) Rescale Slope

if they are 2^15 and 1 you have to have to add 2^15 for the greyscale transformation and everthing is fine :wink:
by Andreas Thiel
Tue, 2013-05-28, 20:38
Forum: DCMTK - General
Topic: find scu parameters?
Replies: 3
Views: 5384

Re: find scu parameters?

No it is not redundant. With -P you ask for a connection using Abstract Syntax: =FINDPatientRootQueryRetrieveInformationModel with -S for FINDStudyRootQueryRetrieveInformationModel and with -k QueryRetrieveLevel=PATIENT you tell the scp on which level of the hierachie (PATIENT-STUDY-SERIES-IMAGE) yo...