Search found 3 matches

by chinson
Mon, 2005-01-03, 16:47
Forum: DCMTK - General
Topic: DICOMDIR interface
Replies: 7
Views: 16777

Hi Jörg, I used an 8.3 MByte DICOMDIR file and without creating a backup (dcmgpdir -nb) it took about 1.5 seconds! Machine is PIV 2.4 GHz, 512 MB RAM with Linux OS. My Windows machine (PII 350) is much slower (~ 9 seconds). My DICOMDIR file is 21.x MBytes. So, it seems reasonable to take about 4 sec...
by chinson
Mon, 2005-01-03, 13:47
Forum: DCMTK - General
Topic: DICOMDIR interface
Replies: 7
Views: 16777

Hi,

I use DcmDicomDir to read a DICOMDIR file with 21,158 KB.
It contain 5 patients and every patient has only one study, one series and about 200~400 instances.
The initiallization of DcmDicomDir consumes 4 secs and I wish it can be shortened to less than 2 secs if it is possible.

Chinson
by chinson
Sun, 2005-01-02, 15:06
Forum: DCMTK - General
Topic: DICOMDIR interface
Replies: 7
Views: 16777

DcmDicomDir dicomdir(DICOMDIR_FILENAME); DcmDirectoryRecord * root = &(dicomdir.getRootRecord()); DcmDirectoryRecord * PatientRecord = NULL; DcmDirectoryRecord * StudyRecord = NULL; DcmDirectoryRecord * SeriesRecord = NULL; DcmDirectoryRecord * FileRecord = NULL; OFString tmpString; if(root != ...