Search found 84 matches

by markw
Thu, 2007-11-22, 17:38
Forum: DCMTK - General
Topic: T_ASC_Network net
Replies: 3
Views: 4576

Ok I'll have to look through the code some more to make sure what I'm doing is safe. In another post, I think you or another member of the dcmtk team had said the code I was talking about dated back to '93 so is a little out of memory - I am just wondering if I'm using the most up to date code (v3.5...
by markw
Wed, 2007-11-21, 07:44
Forum: DCMTK - General
Topic: T_ASC_Network net
Replies: 3
Views: 4576

T_ASC_Network net

Hi, In my application, I have a two buttons: 1) Echo address 1 2) Echo address 2 Each button function creates a local T_ASC_Network object. Should there only ever be one global T_ASC_Network variable? Is it not legal to create a new instance locally within a function? I get some errors when trying t...
by markw
Wed, 2007-11-21, 07:38
Forum: DCMTK - General
Topic: Extending msg.CommandField
Replies: 5
Views: 6397

It seems to work Marco, thanks,

Mark
by markw
Tue, 2007-11-20, 22:33
Forum: DCMTK - General
Topic: Extending msg.CommandField
Replies: 5
Views: 6397

Hi Marco, Ok I get the idea, but just have a few questions regarding the specifics. In the store-scu application, I can just inject a new SOP class UID, something like: "1.2.3.4.5.6.7.8" I propose only that to the store-scp app, I see it as an abstract unknown syntax coming across. Eventua...
by markw
Mon, 2007-11-19, 20:02
Forum: DCMTK - General
Topic: Extending msg.CommandField
Replies: 5
Views: 6397

Hi Marco, I understand. One more question on it - even if I define and negotiate a private SOP class, is it possible to transmit some extra data like a string through? Or am I limited to just sending across the predefined messages (which can be reinterpreted for my particular context as you say, but...
by markw
Sat, 2007-11-17, 19:37
Forum: DCMTK - General
Topic: Extending msg.CommandField
Replies: 5
Views: 6397

Extending msg.CommandField

Hi, In the store scp sample app, there's a function which checks for the message command type, something like: switch (msg.CommandField) { case DIMSE_C_ECHO_RQ: case DIMSE_C_STORE_RQ: // etc.... } Is there any way that we can extend the command types list so we can make our own DICOM device send som...
by markw
Sat, 2007-11-17, 19:22
Forum: DCMTK - General
Topic: convert toolkit to java
Replies: 2
Views: 4080

Ok I'll give it a shot,

Thanks,
Mark
by markw
Wed, 2007-11-14, 22:14
Forum: DCMTK - General
Topic: convert toolkit to java
Replies: 2
Views: 4080

convert toolkit to java

Hi, Kind of a crazy idea, but has anyone on the OFFIS team considered using one of these automated C++ to java conversion utilities? Just wanted to ask you guys since you know the code the best (obviously), and think it's even possible or worth a shot? I am not too sure how well an automated process...
by markw
Wed, 2007-11-14, 03:55
Forum: DCMTK - General
Topic: Strange problem with compressed images
Replies: 1
Views: 3053

Strange problem with compressed images

Hi, I built the SCP incoming application on linux. It accepts non compressed images fine. I am trying to send a compressed image from eFilm 1.5.3 to it, but get the following error: DIMSE Warning: (EFILM, MYAPP): DIMSE_receiveDatasSetInMemory: dset->read() Failed (Illegal Call, perhaps wrong paramet...
by markw
Mon, 2007-10-29, 19:02
Forum: DCMTK - General
Topic: one linking error
Replies: 3
Views: 4530

I think it was link order - now everything seems to be ok.

Thanks as always,
Mark
by markw
Mon, 2007-10-29, 14:37
Forum: DCMTK - General
Topic: one linking error
Replies: 3
Views: 4530

Hi Michael, I'm linking to the following in this order: ofstd dcmdata dcmnet dcmimage dcmjpeg ijg8 ijg12 ijg16 dcmimgle dcmtls The other dcmtk libraries were optional I thought: dcmpstat - a presentation state library and utility apps dcmqrdb - an image database server dcmsign - a digital signature ...
by markw
Mon, 2007-10-29, 03:55
Forum: DCMTK - General
Topic: one linking error
Replies: 3
Views: 4530

one linking error

Hi, I've built dcmtk under linux (fedora), no problems. I tried creating a sample application using the dcmtk libraries, and am getting some linking errors: In function 'sendDcmDataset(T_ASC_Association*, DcmDataset*, unsigned char, E_TransferSyntax, DUL_DATAPDV, void (*)(void*, unsigned long), void...
by markw
Sat, 2007-10-06, 05:22
Forum: DCMTK - General
Topic: compress image in memory?
Replies: 8
Views: 11382

Hi Marco, I used the following command line options with storescp as you suggested: >storescp.exe -v -d +B +xs In a storescu application, I compress my file like: DcmDataset* dataSet = _dcmff.getDataset(); DcmMetaInfo* metaInfo = _dcmff.getMetaInfo(); OFCondition cond = dataSet->chooseRepresentation...
by markw
Tue, 2007-09-04, 18:47
Forum: DCMTK - General
Topic: Aborting during store
Replies: 1
Views: 3321

Aborting during store

Hi, In the storescp example included with dcmtk, there's an option to try aborting a store association mid-connection. The code I'm looking at is: // determine if the association shall be aborted if( (opt_abortDuringStore && progress->state != DIMSE_StoreBegin) || (opt_abortAfterStore &&...
by markw
Tue, 2007-08-07, 14:25
Forum: DCMTK - General
Topic: compress image in memory?
Replies: 8
Views: 11382

Ok fair enough, I am still doubting that compression has taken place though - there doesn't seem to be any way for me to actually check that compression did take place in memory, so I tried transfering 100 1mb images with compression on and off, and there seems to be no difference in transfer time. ...