Search found 31 matches

by Tsunamis
Thu, 2007-09-13, 11:24
Forum: DCMTK - General
Topic: StoreSCP writing dicomdir index for received file
Replies: 1
Views: 3738

StoreSCP writing dicomdir index for received file

I added to the storeSCP program a function triggered on end of study reception that writes a dicomdir. All worked clean until now : i need to support compressed images. StoreSCP is perfectly able to get them to harddrive normally, i see my harddrive folder filled with all intended images BUT when i ...
by Tsunamis
Thu, 2007-09-06, 15:54
Forum: DCMTK - General
Topic: storescp
Replies: 2
Views: 4195

Basically if you watch a bit to the code for storescp.cxx you'll notice that compressed and uncompressed transfer syntaxes are handled if you set the 'prefer jpeg lossless' parameter. Basically you can modify the source of storescp to handle them separately, you just have to check TS when adding dic...
by Tsunamis
Thu, 2007-09-06, 15:50
Forum: DCMTK - General
Topic: How to use DCMTK in an application with GUI
Replies: 3
Views: 6817

Maybe you could be a bit more precise :
What have you already tried?
What was your problem.

Basically I use DCMTK in some MFC environment, using dialogs and lots of other views.

I didn't notice any specific trouble doing that.
by Tsunamis
Mon, 2007-03-26, 12:30
Forum: DCMTK - General
Topic: Dicomdir backup mode
Replies: 2
Views: 3694

Hi J?rg, I speak about the DicomDirInterface object that has a method : - disableBackupMode(); I see temporary files created, named "DDXXXXXX" (X is an hexadecimal character i suppose). Using the doc and a little code exploration, i found out these are temporary files that will be merged i...
by Tsunamis
Fri, 2007-03-23, 17:35
Forum: DCMTK - General
Topic: Dicomdir backup mode
Replies: 2
Views: 3694

Dicomdir backup mode

Hi, I would like to learn more about dicomdir backup mode. I understand that it creates a different dicomdir than the original used. What happens if dicomdir receive 2 simultaneous modification requests? 2 backup files are being created, first one replace original dicomdir... and the second one? wil...
by Tsunamis
Wed, 2007-01-17, 12:26
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

Thanks, once again Offis team shows its professionalism.

Thanks a lot.
by Tsunamis
Fri, 2006-12-15, 10:57
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

I have a question : why not having put a list of all transfer syntaxes to be sure to accept any incoming send request? exemple : parameter '+xAll' and the following list : transferSyntaxes[0] = UID_JPEGProcess14SV1TransferSyntax; transferSyntaxes[1] = UID_JPEGProcess1TransferSyntax; transferSyntaxes...
by Tsunamis
Thu, 2006-12-14, 17:08
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

Thanks a lot, it works... Looks like I misunderstood the error. ^^ Anyway, i thought that preferred TS were used to define a kind of priority in TS negotiation... I'll care to that now that I know that preferred TS also define the list of supported TS. (I found the description of this list into the ...
by Tsunamis
Wed, 2006-12-13, 18:02
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

Erf ok, here is the full output... a bit wide... [EDIT] not so full since code tags were exploded by text size... I removed parts that were inferrable... I suppose only CTImageStorage is interesting us right now. End of message is similar to previous one, so I didn't paste it[/EDIT] Request Paramete...
by Tsunamis
Wed, 2006-12-13, 12:48
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

i cut down huge lists from debug output Request Parameters: Our Implementation Class UID: 1.2.276.0.7230010.3.0.3.5.4 Our Implementation Version Name: OFFIS_DCMTK_354 Their Implementation Class UID: Their Implementation Version Name: Application Context Name: 1.2.840.10008.3.1.1.1 Calling Applicatio...
by Tsunamis
Wed, 2006-12-13, 09:08
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

OK for reception, I'm trying right now...

And how can i make these images handled by storeSCU? how to avoid this conversion problem?

I tried to apply parameter for proposing jpeg lossless (-xs) but it doesn't work...
by Tsunamis
Mon, 2006-12-11, 16:17
Forum: DCMTK - General
Topic: Transfer syntax conversion error
Replies: 11
Views: 14428

Transfer syntax conversion error

Hi, I have a little problem : I'm using the storeSCP program and have a problem receiving files from a third party product. After isolating the images, I try to send them using the storeSCU program. An error is sent : sendMessage:unable to convert dataset from "JPEG Lossless, non hierarchical, ...
by Tsunamis
Wed, 2006-08-16, 13:46
Forum: DCMTK - General
Topic: Problems creating QT widgets together with DCMTK
Replies: 18
Views: 27465

Hum, Actually Spirit, I use a similar code to retrieve some information into the dicom dir... Well, I guess dicomdir writing takes 90% of the time ^^ Marco: excellent remark, I didn't think that could be possible. Are you referencing nema's standrad documentation? Or is that something you remarked a...
by Tsunamis
Mon, 2006-08-14, 14:53
Forum: DCMTK - General
Topic: Problems creating QT widgets together with DCMTK
Replies: 18
Views: 27465

Hey Spirit, When I look at your perf ratings I'm a bit puzzled... I did my own dicomdir usage object and perf is really bad : For 20 patients, i get around 20 secs to write a 21th. I may miss some things... I use the DicomDirInterface to take advantage of the addFile method. I also need to specify s...
by Tsunamis
Mon, 2006-05-22, 09:42
Forum: DCMTK - General
Topic: project options MSVC 6.0
Replies: 2
Views: 3335

project options MSVC 6.0

I see in the options in Ms Visual C++ 6.0 a parameter that caused one of my deployed computer not being able to launch storescp process : the parameter is : Stack allocations -> reserve. An hexadecimal value is there. When I recompile without this parameter, all happens correctly on target computer,...