Search found 347 matches

by martinrame
Fri, 2010-08-27, 20:40
Forum: DCMTK - General
Topic: Grouping Tags by Level
Replies: 1
Views: 2581

Grouping Tags by Level

Does anyone knows where I can find a list of DICOM tags grouped by its level, such as STUDY, SERIES and IMAGE?.

Thanks in advance.
by martinrame
Wed, 2010-08-25, 16:16
Forum: DCMTK - General
Topic: Assigning values to DB_SmallDcmElmt
Replies: 1
Views: 2421

Assigning values to DB_SmallDcmElmt

I'm modifying dcmqrdb to work with an SQL database, at this moment I'm trying to implement the C-FIND service. The method makeResponseList creates a DB_ElementList containing the response elements, which is a list of DB_SmallDcmElmt, and that's working ok. Now, the DB_SmallDcmElmt class has three at...
by martinrame
Mon, 2010-08-23, 20:20
Forum: DCMTK - General
Topic: DcmTagKey to Tag Name
Replies: 2
Views: 3970

Thanks, that worked.
by martinrame
Mon, 2010-08-23, 19:33
Forum: DCMTK - General
Topic: DcmTagKey to Tag Name
Replies: 2
Views: 3970

DcmTagKey to Tag Name

Hi, is there a way to get the Tag Name starting from a DcmTagKey value?

For example, if I have the tag key "(0010,0010)" I want to get the name "PatientsName", is this possible?, or I have to create my own dictionary and find the match by myself?.

Thanks in advance,
Leonardo.
by martinrame
Sat, 2010-07-17, 16:30
Forum: DCMTK - General
Topic: dcm2pdf+Error: not an Encapsulated PDF Storage object: C:\xx
Replies: 6
Views: 10148

Hi Nicolás, read this: dcm2pdf: Extract PDF file from DICOM encapsulated PDF The error message is saying that file.do is not an Encapsulated PDF Storage object!. Translation: dcm2pdf does not convert dicom files to pdf as you think, it extract PDF encapsulated files from dicom storage files. PS: If ...
by martinrame
Thu, 2010-07-15, 21:51
Forum: DCMTK - General
Topic: dcmprscp and relay to printer
Replies: 0
Views: 23058

dcmprscp and relay to printer

Hi, I'm doing some tests with dcmprscp and I'm don't getting it. It is supposed to act as a print spooler, that receives files from dcmprscu and relay those files to a Dicom printer?. I'm doing some tests with a virtual dicom printer (ETIAM DICOM PRI), and it doesn't receive any communication from D...
by martinrame
Fri, 2010-07-02, 16:58
Forum: DCMTK - General
Topic: Linking with JPEG support
Replies: 2
Views: 2955

You are right, thanks again.
by martinrame
Fri, 2010-07-02, 16:22
Forum: DCMTK - General
Topic: Linking with JPEG support
Replies: 2
Views: 2955

Linking with JPEG support

Hi, I'm trying to use DiJPEGPlugin in my program, to do so, I included this couple of includes: #include "dcmtk/dcmjpeg/djdecode.h" #include "dcmtk/dcmjpeg/dipijpeg.h" When I compile, the linker raises this errors: c++ -DHAVE_CONFIG_H -DDCMTK_BUILD_DATE=\"2010-05-04\" -...
by martinrame
Wed, 2010-06-30, 15:23
Forum: DCMTK - General
Topic: New Link error with dcmimage.o
Replies: 4
Views: 3552

Thanks! I changed my Makefile and Makefile.in with this: dcmimgledir = $(top_srcdir)/../dcmimgle dcmimgleinc = -I$(dcmimgledir)/include dcmimglelibdir = -L$(dcmimgledir)/libsrc dcmimglelib = -ldcmimgle LOCALINCLUDES = $(dcmnetinc) $(dcmdatainc) $(ofstdinc) $(ofloginc) $(dcmimgleinc) LIBDIRS = -L$(to...
by martinrame
Wed, 2010-06-30, 15:06
Forum: DCMTK - General
Topic: New Link error with dcmimage.o
Replies: 4
Views: 3552

No it's not a stupid question. Here's another (more stupid) question. How should I link the library to my application?. i don't find the file dcmimgle.lib, I'm including dmcimage.o (created from dcmimage.cc), but of course this is wrong. BTW: I'm on Linux, compiling from command line using Make, and...
by martinrame
Wed, 2010-06-30, 14:44
Forum: DCMTK - General
Topic: New Link error with dcmimage.o
Replies: 4
Views: 3552

New Link error with dcmimage.o

Hi, I included "dcmtk/dcmimgle/dcmimage.h" in dcmqrdbq.cc to be able to use the DicomImage class, but when I try to compile it, the linker shows this error when I invoke Make from dcmqrdb/apps: ... dcmqrdbq.cc:(.text+0x13cf9): undefined reference to `DicomImage::DicomImage(char const*, uns...
by martinrame
Mon, 2010-06-21, 16:33
Forum: DCMTK - General
Topic: dcmqrdb and Private SOP Class
Replies: 4
Views: 6739

Thanks, I'll need a little help here.

I found that presentation contexts are listed in dcmdata/libsrc/dcuid.cc, in the array "dcmAllStorageSOPClassUIDs[]". Can I add my new presentation context to this array and that's all?.
by martinrame
Sun, 2010-06-20, 01:57
Forum: DCMTK - General
Topic: dcmqrdb and Private SOP Class
Replies: 4
Views: 6739

dcmqrdb and Private SOP Class

Hi, I'm trying to send a image to dcmqrscp using storescu, I had to add the presentation context to storescu.cfg, but dcmqrscp doesn't seems to be accepting it. Does dcmqrscp allows to define custom presentation contexts like storescu.cfg does?. This is the what storescu shows (I cut only the intere...
by martinrame
Wed, 2010-06-09, 12:48
Forum: DCMTK - General
Topic: Slow compile process
Replies: 2
Views: 3084

Great!
by martinrame
Tue, 2010-06-08, 18:22
Forum: DCMTK - General
Topic: Slow compile process
Replies: 2
Views: 3084

Slow compile process

Hi, as you have seen, I'm implementing a database access class for dcmqrscp, and while trying to understand the code, I stumbled upon the dcmdata directory, and its "dcostrmf.cc" and "dcfilefo.cc", and added some DCMDATA_ERROR("message") to allow me to debug the code. I...