Search found 56 matches

by Roadrunner
Thu, 2012-04-12, 00:49
Forum: DCMTK - General
Topic: findAndGetOFStringArray and findAndGetOFString
Replies: 2
Views: 7987

findAndGetOFStringArray and findAndGetOFString

Today I tryed to get the pixel spacing value. From a dump i saw the following: (0018,1164) DS [0.086196\0.086215] # 18, 2 ImagerPixelSpacing My first thought was to use "findAndGetOFString" which gave 0.086196 as result. okay i thought the \0 is the end of a string - so you have to use an ...
by Roadrunner
Mon, 2012-04-02, 11:38
Forum: DCMTK - General
Topic: DICOM TAG URGENT
Replies: 3
Views: 4217

What you mean is the priority

Code: Select all

(0000,0700)	US	Priority
or but retired

Code: Select all

(0040,A057)	CS	RETIRED_UrgencyOrPriorityAlertsTrial	1-n	DICOM/retired0xa057)
You'll find them in the dictionary $DCMTK_extract_path/share/dcmtk/dicom.dic

Hope this will help you. :-)

Frank
by Roadrunner
Mon, 2012-03-26, 11:02
Forum: DCMTK - General
Topic: What dose the time mean?
Replies: 4
Views: 4778

Thanks,but I have found Scheduled Procedure start date in findscp datebase, I guess it is common too; Thats right but there are some vendors which have an option called 'last 24h' and for this option it is important. These option is especially for modalities which work at night. Imagine the followi...
by Roadrunner
Wed, 2012-03-21, 09:44
Forum: DCMTK - General
Topic: Which ethernet card will DCMTK use
Replies: 6
Views: 6608

The service class provider are binded to address 0.0.0.0 which means the service is running on all cards in your system.

Frank
by Roadrunner
Mon, 2012-03-05, 17:35
Forum: DCMTK - General
Topic: Help dcmdump
Replies: 1
Views: 3424

dcmdump +r +sd c:\test\ reads all from the directory 'test' and the sub directory from drive c dcmdump without any parameter should show you a help screen where you find +r for recursive and +sd inputdir. Now you have all to create dump files. btw: next time you should write you are new to the comm...
by Roadrunner
Sun, 2012-03-04, 14:07
Forum: DCMTK - General
Topic: Application Entity
Replies: 6
Views: 7890

You should give use more details which application do you use and what do you want to do. :-) Most DCMTK command line prorams are using -aec and -aet for setting the own and remote AE title. If you try to run a program without a parameter you often get a help text or if not ... program name -h or --...
by Roadrunner
Thu, 2012-03-01, 19:41
Forum: DCMTK - General
Topic: Problem displaying a monochrome image
Replies: 6
Views: 7361

You forgot to use the search function of this forum. ;-) http://forum.dcmtk.org/viewtopic.php?t=799&highlight=qimage The 4th post shows a way for creating a qimage - colored and gray scaled. All you nedd is a bit knowledge of C++ but if you develop with qt you have one. :-) Hope this will help. ...
by Roadrunner
Thu, 2012-02-23, 16:52
Forum: DCMTK - General
Topic: RGB pixel value
Replies: 26
Views: 29532

@paolom: if you would use the search function in this forum and search for QImage you would find some code snips. ;-)

Frank
by Roadrunner
Sat, 2012-02-18, 17:46
Forum: DCMTK - General
Topic: is MOVEResponses a class? Where?
Replies: 5
Views: 5773

You have to use a snapshot 'released' after 3.6.0. I would prefer the last one. ;-)

If you need some help because the are some changes in the classes
between the snapshot feel free to ask again.

Frank
by Roadrunner
Fri, 2012-01-13, 01:58
Forum: DCMTK - General
Topic: wlmscpfs Worklistserver, sending unrequested tags
Replies: 2
Views: 3701

You can try to write a worklist 'proxy'. I did this in the following way: - the proxy server queries the normal worklist server for new entries for your ultrasound system. - You save the result in files. - Now you open the files and insert the missing tags and save them to a new directory which is t...
by Roadrunner
Wed, 2011-12-14, 19:29
Forum: DCMTK - General
Topic: Continuation of closed topic
Replies: 18
Views: 329111

And I'm asking if I need to add EXS_LittleEndianExplicit, or if I have to check it on the dcmdataset ??? http://support.dcmtk.org/docs/classDcmDataset.html#ff0682fa11939b34b27cf3dbcfd78d3b "transfer syntax used to write the data (EXS_Unknown means use current)" This should tell you everyt...
by Roadrunner
Wed, 2011-12-07, 16:59
Forum: DCMTK - General
Topic: problems accessing dicomdir
Replies: 3
Views: 5868

Try to convert your dicomdir to xml so you can see the records and their values; not all values but most of them i. e. patient name.

Thats what i did as i implemented my dicomdir reading class.

Frank
by Roadrunner
Thu, 2011-12-01, 20:25
Forum: DCMTK - General
Topic: Continuation of closed topic
Replies: 18
Views: 329111

The code was to remember me where it is coming from - the scp.h. ;-) And the posted code with the dcmdataset->save(..) does really work because I am working with that code successfully. Right now (not the published code) I am creating the dataset in the constructor of the class and moved some parts ...
by Roadrunner
Wed, 2011-11-30, 01:44
Forum: DCMTK - General
Topic: Continuation of closed topic
Replies: 18
Views: 329111

Finally, when all the images are downloaded, the service does not stop and the application is blocked. How should we do to stop the service started via listen? As i mentioned above - I would use another thread for storing the images; so if i want to stop the service I send a kill/terminate command ...
by Roadrunner
Tue, 2011-11-29, 20:47
Forum: DCMTK - General
Topic: Continuation of closed topic
Replies: 18
Views: 329111

You have to use either fork() (under linux) or creating process with the win32 api where you handle the listen/storescp part and another process for your scuMoveRequest. Or better you create a thread (they are faster than a process to create) for each 'thing' (listen() and scumoverequest) ... but yo...