Search found 14 matches

by feldman_joel
Thu, 2018-12-20, 16:50
Forum: DCMTK - General
Topic: can DcmStorageSCU update tags before it sends?
Replies: 3
Views: 7384

Re: can DcmStorageSCU update tags before it sends?

thank you for the response. how do you modify the DcmDataset before DcmStorageSCU::addDataset() is called? i use DcmStorageSCU::addDicomFile() to load the image i want to send. i then want to modify a few tags for the image before i send, so how to i get access to the dataset from the image i just o...
by feldman_joel
Thu, 2018-12-13, 17:24
Forum: DCMTK - General
Topic: can DcmStorageSCU update tags before it sends?
Replies: 3
Views: 7384

can DcmStorageSCU update tags before it sends?

greetings, i would like to use DcmStorageSCU to update a few dicom tags before it sends the image. can this be done using this class? i see the method addDataset exists for this class, but i would like to read an existing tag and modify a tag before i send the image and not copy in an entire new dat...
by feldman_joel
Tue, 2015-02-10, 14:55
Forum: DCMTK - General
Topic: DIMSE_receiveDataSetInMemory runs out of virtual memory
Replies: 2
Views: 3310

Re: DIMSE_receiveDataSetInMemory runs out of virtual memory

thank you for you response and suggestion. just to let you know, i built a small program with 32 bit library to receive 1.5 gb images and it ran out of memory with the call to DIMSE_receiveDataSetInMemory, but i built same program with 64 bit library and it worked.
by feldman_joel
Wed, 2015-02-04, 15:08
Forum: DCMTK - General
Topic: DIMSE_receiveDataSetInMemory runs out of virtual memory
Replies: 2
Views: 3310

DIMSE_receiveDataSetInMemory runs out of virtual memory

i would really like to use the call DIMSE_receiveDataSetInMemory rather than DIMSE_receiveDataSetInFile for large files. is there a way to allocate more memory for DIMSE_receiveDataSetInMemory so that I can receive a 1.5 gb file? my system has 8 gb ram installed and 4 gb available when my applicatio...
by feldman_joel
Sun, 2015-02-01, 20:47
Forum: DCMTK - General
Topic: DIMSE Failed to send message\n0006:031d TCP I/O Error (No error) occurred in routine: writeDataPDU
Replies: 19
Views: 37315

Re: DIMSE Failed to send message\n0006:031d TCP I/O Error (N

i would really like to use the call DIMSE_receiveDataSetInMemory rather than DIMSE_receiveDataSetInFile. is there a way to allocate more memory for DIMSE_receiveDataSetInMemory so that I can receive a 1.5 gm file? like i said, my system has 8 gb ram installed and 3 gb available when my application r...
by feldman_joel
Thu, 2015-01-29, 16:58
Forum: DCMTK - General
Topic: DIMSE Failed to send message\n0006:031d TCP I/O Error (No error) occurred in routine: writeDataPDU
Replies: 19
Views: 37315

Re: DIMSE Failed to send message\n0006:031d TCP I/O Error (N

correct. the original file is 1.5 gb, uncompressed and has transfer syntax little endian implicit as noted in storescu log. the storescp consumes the 1.5 gb when receiving the image. i started with 4.8 gb in use and when receiving my system went to 7.0 gb in use (out of 8 gb available). i turned off...
by feldman_joel
Wed, 2015-01-28, 17:40
Forum: DCMTK - General
Topic: DIMSE Failed to send message\n0006:031d TCP I/O Error (No error) occurred in routine: writeDataPDU
Replies: 19
Views: 37315

Re: DIMSE Failed to send message\n0006:031d TCP I/O Error (N

thank you for a prompt response. i tried sending the 1.5 gb file using storescu to storescp in both 32 bit mode and 64 bit mode. you are correct in that the problem was not with the storescu, but rather i needed to set the bit preserving flag on the storescp. once i did that, i was able to complete ...
by feldman_joel
Tue, 2015-01-27, 19:33
Forum: DCMTK - General
Topic: DIMSE Failed to send message\n0006:031d TCP I/O Error (No error) occurred in routine: writeDataPDU
Replies: 19
Views: 37315

Re: DIMSE Failed to send message\n0006:031d TCP I/O Error (N

greetings. has there been any resolution to internal bug id #393? i recently compiled build dcmtk-3.6.1_20140617 using vc 2008 with both 32 bit and 64 bit formats and the storescu utility experiences the 0006:020e and 0006:031d error messages when trying to send large files (the one i am trying to s...
by feldman_joel
Tue, 2015-01-27, 16:39
Forum: DCMTK - Installation
Topic: Ofstd and oflog errors on MSVC 2003 dcmtk-3.6.1_20140617
Replies: 3
Views: 8352

Re: Ofstd and oflog errors on MSVC 2003 dcmtk-3.6.1_20140617

Thank you so much for the prompt response and useful information. I did as you said and everything compiles successfully now using VS2008 for both the 32bit and 64 bit platform! In summary: Using CMake 3.1.0, after setting the proper paths and pressing "Configure" for Visual Studio 9 2008,...
by feldman_joel
Mon, 2015-01-26, 21:15
Forum: DCMTK - Installation
Topic: Ofstd and oflog errors on MSVC 2003 dcmtk-3.6.1_20140617
Replies: 3
Views: 8352

Ofstd and oflog errors on MSVC 2003 dcmtk-3.6.1_20140617

Hello, I am trying to build dcmtk-3.6.1_20140617 and I am not having any success. Note that I am able to successfully build dcmtk-3.6.1_20120515 on the same system. I read through the forum.dcmtk.org “DCMTK – Installation” posts. There are many different threads and combinations of issues out there....
by feldman_joel
Thu, 2013-02-28, 18:44
Forum: DCMTK - General
Topic: DcmSCP in multiprocess mode (Windows)
Replies: 23
Views: 25331

Re: DcmSCP in multiprocess mode (Windows)

Has any progress been made with this issue? I am trying to override waitForAssociation, but I can't access m_assoc because it is a private. Same issue with trying to override handleAssociation. I tried making my own waitForAssociation, creating a T_ASC_Association *assoc and calling ASC_receiveAssoc...
by feldman_joel
Wed, 2013-02-20, 22:10
Forum: DCMTK - General
Topic: DcmSCP in MultiProcess Mode using Windows
Replies: 1
Views: 3279

DcmSCP in MultiProcess Mode using Windows

Hello, Is DcmSCP in 3.6.1 for Windows thread safe or not? I searched and found the following two posts regarding MultiThreading and Windows: http://forum.dcmtk.org/viewtopic.php?f=1&t=3200&hilit=MultiProcess http://forum.dcmtk.org/viewtopic.php?f=1&t=3052&hilit=enableMultiProcessMode...
by feldman_joel
Fri, 2013-01-18, 19:35
Forum: DCMTK - General
Topic: Help Inserting Multi-Valued fields using putAndInsertFloat32
Replies: 2
Views: 3798

Help Inserting Multi-Valued fields using putAndInsertFloat32

i am having difficulty trying to simply add a multi-valued field. any help would be appreciated. here is a code snippet: OFCondition result; DcmItem *item_id_1 = new DcmItem(); result = item_id_1->putAndInsertFloat32( DCM_GraphicData /*(0070,0022)*/, 1.0, 0, OFTrue); result = item_id_1->putAndInsert...
by feldman_joel
Tue, 2013-01-15, 20:55
Forum: DCMTK - General
Topic: Help Inserting Multi-Valued fields using putAndInsertUint32
Replies: 1
Views: 3192

Help Inserting Multi-Valued fields using putAndInsertUint32

i am having difficulty trying to simply add a multi-valued field. any help would be appreciated. here is a code snippet: DcmItem *item_id_1 = new DcmItem(); result = item_id_1->putAndInsertUint32( DCM_ReferencedContentItemIdentifier /*(0040,DB73)*/,1, 0, OFTrue); result = item_id_1->putAndInsertUint...