Search found 19 matches

by vyrus
Fri, 2011-06-24, 22:27
Forum: DCMTK - General
Topic: Directly extracting information from T_DIMSE_Message?
Replies: 4
Views: 5370

Thank you so much, Michael. I guess I have to reorganize files after receiving. I think that should work fine. Best regards,
by vyrus
Thu, 2011-06-23, 17:18
Forum: DCMTK - General
Topic: Directly extracting information from T_DIMSE_Message?
Replies: 4
Views: 5370

Thank you for the quick response! I am trying (by modifying storescp.cxx) to extract some information from T_DIMSE_Message object after calling DIMSE_receiveCommand but before calling DIMSE_storeProvider, so I can name and direct the received DICOM file to different location. Assuming that after cal...
by vyrus
Thu, 2011-06-23, 16:43
Forum: DCMTK - General
Topic: Directly extracting information from T_DIMSE_Message?
Replies: 4
Views: 5370

Directly extracting information from T_DIMSE_Message?

I am trying to customize the original DCMTK storescp implementation for our application. Is there any way to extract image information (such as # of rows) directly from T_DIMSE_Message object before calling DIMSE_storeProvider?
by vyrus
Wed, 2007-07-25, 18:36
Forum: DCMTK - General
Topic: memory leak problem in dcmtk 3.5.4
Replies: 4
Views: 5670

I had good experience using Memory Validator as my memory checking tool. I didnot find any memory links related to DCMTK
by vyrus
Sat, 2007-02-10, 00:33
Forum: DCMTK - General
Topic: Ensure Data Integrity
Replies: 6
Views: 9355

I was just told that TCP will perform some weak integrity check with checksum. If storescu and storescp are using TCP protocol, we should automatically have some checksum to ensure data integrity. Please comment on this.
by vyrus
Thu, 2007-02-01, 20:33
Forum: DCMTK - General
Topic: Ensure Data Integrity
Replies: 6
Views: 9355

Many thanks! You folks are really helpful!
by vyrus
Wed, 2007-01-31, 21:49
Forum: DCMTK - General
Topic: Ensure Data Integrity
Replies: 6
Views: 9355

Thank you so much for the answer! For the digital signature, my understanding is that, when storescu send any Dicom stream, by default, there is not any digital signature included, right? Thanks!
by vyrus
Tue, 2007-01-30, 21:35
Forum: DCMTK - General
Topic: Ensure Data Integrity
Replies: 6
Views: 9355

Ensure Data Integrity

Are there any mechanisms in Dicom standard to ensure the data integrity in Dicom storage services? Something similar to CRC checksum string of a internet file. If there is such a mechanism, DCMTK should'v implemented it, right?
by vyrus
Mon, 2006-04-24, 17:23
Forum: DCMTK - General
Topic: How to add a private Dicom SOP class?
Replies: 2
Views: 3769

Thank you!
by vyrus
Fri, 2006-04-21, 18:40
Forum: DCMTK - General
Topic: How to add a private Dicom SOP class?
Replies: 2
Views: 3769

How to add a private Dicom SOP class?

According to the document, i can do that by modifying etc\storescp.cfg and etc\storescu.cfg, for example. But could someone more specifically tell me in which (super-)section I should do that? [[ExtendedNegotiation]]? Can i just use name-value pair like: PresentationContext81 = 1.2.840.10008.5.1.4.1...
by vyrus
Mon, 2006-02-13, 16:40
Forum: DCMTK - General
Topic: questions about link errors
Replies: 5
Views: 6508

You also need to add netapi32.lib wsock32.lib
by vyrus
Sat, 2006-02-11, 22:16
Forum: DCMTK - General
Topic: which is the best compilator in windows for dcmtk ?
Replies: 5
Views: 5688

I am using VS.net 2003 currently for DCMTK
by vyrus
Fri, 2006-02-10, 17:23
Forum: DCMTK - General
Topic: questions about link errors
Replies: 5
Views: 6508

Re: questions about link errors

Hi. I have built a new project in vs 2005, and added the lib files. The code is as follows: #include "stdafx.h" #include <iostream> #include "dcmtk/dcmdata/dctk.h" int _tmain(int argc, _TCHAR* argv[]) { char * FILE_NAME = new char[100] = "D:\\study\\DICOM\\data\\PNEUMATIX\\...
by vyrus
Fri, 2006-02-10, 17:19
Forum: DCMTK - General
Topic: How to read OX data?
Replies: 6
Views: 6611

You should note that OX is an internal pseudo-type that DCMTK uses for DICOM attributes that (when received in implicit VR) might be interpreted either as OB or as OW. Access to such attributes can be done either using the Uint8 or using the Uint16 methods, and DCMTK will perform internal byte swap...
by vyrus
Fri, 2006-02-10, 00:39
Forum: DCMTK - General
Topic: how to creat own project
Replies: 2
Views: 3539

Re: how to creat own project

Hi, I have a naive question. if i want to creat a new project. what I need to do? do I need to write a cMakelist for it? or just copy a existing fold and modify it? If you work with Visual Studio from Microsoft, you can first create empty windows console project; add existing .h .cpp dcmtk source f...