Search found 11 matches

by 7554753
Fri, 2008-12-12, 11:05
Forum: DCMTK - General
Topic: get dcm file information
Replies: 3
Views: 4366

haha,thanks.
I find GDCM performs perfect in file scanning.
by 7554753
Fri, 2008-12-12, 07:24
Forum: DCMTK - General
Topic: get dcm file information
Replies: 3
Views: 4366

May be i don't express my meaning exactly. so, i just want to know the dcm file header information, such as patientID or patient Name; I know DcmFileFormat* p_dfile ->loadFile(filename,.......) p_dfile ->getDataset()->findAndGetOFString(DCM_PatientID, buffer) can do this, but i think it will load th...
by 7554753
Thu, 2008-12-11, 05:43
Forum: DCMTK - General
Topic: get dcm file information
Replies: 3
Views: 4366

get dcm file information

how can i get a dcm file information?
i mean that i just want to read the file header infromation in order to save time.
by 7554753
Tue, 2008-12-09, 03:19
Forum: DCMTK - General
Topic: file transmission speed
Replies: 8
Views: 9218

storescu ScpIP 104 1. dcm 2.dcm
i use the dcmtk scu to send 2 images like above, then the storescu will start one network connection or two network connection? Should I make some changes in storescu source code?
by 7554753
Mon, 2008-12-08, 04:10
Forum: DCMTK - General
Topic: file transmission speed
Replies: 8
Views: 9218

Thanks for your answer.
If i transmit 100 images in a single network connection, the storescp will generate 1 C-STORE-RQ message or 100 C-STORE-RQ messages?
by 7554753
Sun, 2008-11-23, 10:57
Forum: DCMTK - General
Topic: file transmission speed
Replies: 8
Views: 9218

Then how to changes the receiver or storescp, do you mean i can only process received images one by one?
I just want to save the received images' information into database. if i can only process one image eacn time, that means i'll waste much in connecting database.
by 7554753
Sat, 2008-11-15, 07:58
Forum: DCMTK - General
Topic: file transmission speed
Replies: 8
Views: 9218

i mean use dicomSender tools to send hunders of files at one time.
Does much of the time is wasted at connecting and disconnecting? And how can i solve this problem in the storescp source code?
by 7554753
Sat, 2008-11-15, 04:51
Forum: DCMTK - General
Topic: file transmission speed
Replies: 8
Views: 9218

file transmission speed

i have a question. While i am using the storescp to receive the .dcm files in the server. The transfer speed is much lower than i am directly copying the files to the server. How can i fully use the network bandwidth, or how can i transfer the file as much faster as i am directly copying the file?
by 7554753
Thu, 2008-07-17, 02:16
Forum: DCMTK - General
Topic: file size problem while transporting
Replies: 2
Views: 4392

Thanks, i think so.
by 7554753
Wed, 2008-07-16, 03:24
Forum: DCMTK - General
Topic: how to save dicom file to a buffer
Replies: 0
Views: 16117

how to save dicom file to a buffer

in the storescp source code, i look into the storeSCPCallback function, it use cbdata->dcmff->saveFile(fileName.c_str(), xfer, EET_ExplicitLength, EGL_recalcGL, EPD_withoutPadding, OFstatic_cast(Uint32, 0), OFstatic_cast(Uint32, 0), false) to save the data into a file, so then how to save the data i...
by 7554753
Wed, 2008-07-16, 03:08
Forum: DCMTK - General
Topic: file size problem while transporting
Replies: 2
Views: 4392

file size problem while transporting

I use the dcmtk sample tools storescp and storescu to transport a dcm file.
storescp.exe 1234
storescu.exe 127.0.0.1 1234 c:\\1.dcm
the 1.dcm is a 526k dicom file, but after transporting like above, the transported file is only 524k, what is the problem?