Search found 117 matches

by Thomas Wilkens
Wed, 2005-08-31, 07:11
Forum: DCMTK - General
Topic: image CTN handling of wildcard characters
Replies: 1
Views: 3379

See DICOM standard part 4 section C.2.2.2.4 for wildcard matching. Note that there are also other matching techniques.
by Thomas Wilkens
Wed, 2005-08-31, 07:08
Forum: DCMTK - General
Topic: dump2dcm.exe - error with most Contour Data attributes
Replies: 1
Views: 4115

Use this option: +l --line [m]ax-length: integer maximum line length m (default 4096) That should do it. Please note that with each command line application, e.g. dump2dcm.exe, there is also a textfile explaining all command line options/parameters, e.g. dump2dcm.man or dump2dcm.txt. Moreover, runni...
by Thomas Wilkens
Fri, 2005-08-05, 07:04
Forum: DCMTK - General
Topic: Get a tag and all subtags from an element in DcmDataset
Replies: 5
Views: 9674

You are using some DICOM terms in the wrong way. From your post it is clear that you dont really know what a sequence attribute is. Here's a short explanation: A special case among the DICOM data types is the sequence („Sequence of Items“, SQ), which can be used to create hierarchical data structure...
by Thomas Wilkens
Fri, 2005-07-15, 08:00
Forum: DCMTK - General
Topic: dcmtk newbie
Replies: 3
Views: 5207

DCMTK comes with documentation that can be generated from the source files. See the INSTALL file for how to do this. This documentation can also be viewed online at http://support.dcmtk.org/docs/index.html . Moreover, each application in any of the apps folders, e.g. dcmdump from dcmdata/apps, has a...
by Thomas Wilkens
Mon, 2005-07-11, 06:32
Forum: DCMTK - General
Topic: findscu ID Study Problems
Replies: 9
Views: 16135

I did not really understand your question about "querying patients whose name starts with a P", I am sorry. But with regard to this topic, have you heard about "wildcard matching"? You can actually tell the PACS to return only patients whose name starts with a P by specifying &qu...
by Thomas Wilkens
Mon, 2005-07-11, 06:18
Forum: DCMTK - General
Topic: Link error while using dcmtk
Replies: 2
Views: 6287

See also FAQ 27 at the very bottom.
by Thomas Wilkens
Mon, 2005-07-11, 06:16
Forum: DCMTK - General
Topic: Link error while using dcmtk
Replies: 2
Views: 6287

You apparently forgot to link against netapi32.lib and wsock32.lib.
by Thomas Wilkens
Fri, 2005-07-08, 06:51
Forum: DCMTK - General
Topic: findscu ID Study Problems
Replies: 9
Views: 16135

I am sorry but that is exactly the way the "traditional" query/retrieve is defined in the DICOM standard: on the patient level you can query for all attributes which DICOM specifies to be on the patient level (and no other attributes), on the study level you can query for all attributes wh...
by Thomas Wilkens
Wed, 2005-07-06, 06:20
Forum: DCMTK - General
Topic: Is there a Performed Procedure Step scu avilable in DCMTK - Is there an implementation of N-CREATE or N-SET IODs
Replies: 8
Views: 12636

We do not have an implementation of an MPPS SCU (Client) application, but an implementation of an MPPS SCP (Server) application. Please note the difference.
by Thomas Wilkens
Mon, 2005-07-04, 06:27
Forum: DCMTK - General
Topic: Tag Information
Replies: 3
Views: 5140

comp.protocols.dicom is not a website, it is a newsgroup. You will need a newsreader in order to be able to retrieve/send messages from/to this newsgroup, or you can also use google: http://groups.google.com/groups?hl=de&l ... cols.dicom
by Thomas Wilkens
Fri, 2005-07-01, 06:43
Forum: DCMTK - General
Topic: findscu ID Study Problems
Replies: 9
Views: 16135

Look in the DICOM standard part 4, table C.6-5. The table shows all attributes which can be used for a query on the study level in the study root information model. One of the is the unique key (U) for this level, some of them are required keys (R) and some of them are optional (O). Unique and requi...
by Thomas Wilkens
Fri, 2005-07-01, 06:25
Forum: DCMTK - General
Topic: Tag Information
Replies: 3
Views: 5140

First of all: please do NOT post non-DCMTK related questions in this forum. For question about DICOM in general use the comp.protocols.dicom newsgroup. Secondly: looking at the DICOM standard part 6 will tell you that attribute 300a,0186 does not exist (at least not in the 2004 version). Thirdly: pr...
by Thomas Wilkens
Thu, 2005-06-30, 06:38
Forum: DCMTK - General
Topic: findscu ID Study Problems
Replies: 9
Views: 16135

I suppose you are using the patient root information model (option -P in findscu)? If that is the case, here is my answer: The patient root information model has 4 hierarchy levels: Patient (highest level) - Study - Series - Image (lowest level). In order to be able to query on a certain lower level...
by Thomas Wilkens
Thu, 2005-06-23, 14:41
Forum: DCMTK - General
Topic: Building sequence based on dictionary
Replies: 3
Views: 5763

I did not want to suggest that you actually _use_ this function, you can use this function as an _example_ on how to expand a sequence. If you need to know what attributes can occur in the ScheduledProcedureStepSequence, you have to look into the DICOM standard, part 4, table K.6-1. With this inform...
by Thomas Wilkens
Thu, 2005-06-23, 06:24
Forum: DCMTK - General
Topic: Building sequence based on dictionary
Replies: 3
Views: 5763

An example for such a "sequence expansion" algorithm is already included in DCMTK, fortunately for you also already for the worklist management service. This algorithm is not based on the data dictionary though (because this is impossible), you will have to specify yourself, which attribut...