Search found 17 matches

by Juan Bravo
Thu, 2007-02-01, 11:46
Forum: DCMTK - General
Topic: Patient Level Attributes
Replies: 1
Views: 3120

Patient Level Attributes

Hello, In PS 3.4-2006, C.6.1.1.2: Patient Level, there is a table that shows the different attributes that may be incluided in a Patient Root / Patient Level query.. PATIENT LEVEL ATTRIBUTES FOR THE PATIENT ROOT QUERY/RETRIEVE INFORMATION MODEL R Patient’s Name (0010,0010) U Patient ID (0010,0020) O...
by Juan Bravo
Tue, 2007-01-23, 09:23
Forum: DCMTK - General
Topic: About DICOM Images in Series in Studies in Patients
Replies: 3
Views: 4468

So, what should a storage SCP do instead? Send a C-STORE-RSP with a failure status? I've no experience in real-hospital-environment, but our aim is creating a storage server that would be able to recieve images from A LOT of entities.. so maybe any coincidence between SOPInstanceUIDs, SeriesInstance...
by Juan Bravo
Mon, 2007-01-22, 13:21
Forum: DCMTK - General
Topic: About DICOM Images in Series in Studies in Patients
Replies: 3
Views: 4468

About DICOM Images in Series in Studies in Patients

Hello all. I know that two different images can't share the same SOPInstanceUID. The SOPInstanceUID attribute is unique world-wide.. But what about the SeriesInstanceUID? Is that also unique world-wide or just unique inside it's root StudyInstanceUID? Take a look at this example, Patient001 { Study0...
by Juan Bravo
Fri, 2006-10-20, 09:33
Forum: DCMTK - General
Topic: How does Multiple-Value FIND request work?
Replies: 2
Views: 3325

All-right. Thank you again!
by Juan Bravo
Fri, 2006-10-20, 09:30
Forum: DCMTK - General
Topic: Retrieve all images from efilm
Replies: 3
Views: 5032

eFilm also has the ability to transfer images towards any STORE-SCP,
I guess you should run a STORE-SCP on the linux machine, then add
this new server on eFilm and use the SEND option on the LOCAL STUDIES
folder, may be this could be easier than using movescu!
by Juan Bravo
Fri, 2006-10-20, 09:24
Forum: DCMTK - General
Topic: How does Multiple-Value FIND request work?
Replies: 2
Views: 3325

How does Multiple-Value FIND request work?

Hello, I clearly understand that if, for example, I ask the server with the following request of: REQUEST: (0010,1000)=" Martin^Tom " INFO ON SERVER: (0010,1000)="Martin^Tomas\ Martin^Tom \Martin^Tomaso" That will generate a match. -- My question is, can you ask the server using ...
by Juan Bravo
Fri, 2006-10-20, 09:13
Forum: DCMTK - General
Topic: Movescu problem
Replies: 1
Views: 2925

Please include a copy of the program response,
so we could figure out what is happening.
by Juan Bravo
Fri, 2006-10-20, 08:55
Forum: DCMTK - General
Topic: storescp and different modalities
Replies: 1
Views: 2956

Activating verbose or debug mode in the STORESCP
could give us some clues of what is happening.
by Juan Bravo
Wed, 2006-10-11, 09:03
Forum: DCMTK - General
Topic: MOVE SCP Behavior
Replies: 0
Views: 16177

MOVE SCP Behavior

Hello, If a recieve a C-MOVE request asking to retrieve a complete study (Relational Retrieve, PS 3.4-2006 C.4.2.3.2.1) containing, let's say, 100 instances, and some of them fail in sending operations.. Should the MOVE-SCP abort the pending move operations or just keep on sending the instances even...
by Juan Bravo
Fri, 2006-09-22, 11:38
Forum: DCMTK - General
Topic: Obtaining DICOM SOPClassUID
Replies: 2
Views: 4255

Yes!
This should work.

Thanks Michael :D
by Juan Bravo
Fri, 2006-09-22, 10:37
Forum: DCMTK - General
Topic: Obtaining DICOM SOPClassUID
Replies: 2
Views: 4255

Obtaining DICOM SOPClassUID

Hello, For using: OFCondition performMoveSubOp (DIC_UI sopClass, DIC_UI sopInstance, char *fname) I need both SOPClassUID & SOPInstanceUID (indeed only SOPClassUID seems to be really needed for a correct transfer, as I can leave sopInstance parameter empty and all seems to work fine). Well.. I'v...
by Juan Bravo
Tue, 2006-07-25, 12:27
Forum: DCMTK - General
Topic: Mandatory Fields on C-FIND-RSP
Replies: 4
Views: 6040

Another question.. In this example, I've used eFilm to ask DCMQRSCP for any DICOM with UserID: brain, C-FIND-RQ: # Dicom-Data-Set # Used TransferSyntax: LittleEndianImplicit (0008,0000) UL 86 # 4, 1 IdentifyingGroupLength (0008,0020) DA (no value available) # 0, 0 StudyDate (0008,0030) TM (no value ...
by Juan Bravo
Mon, 2006-07-24, 10:23
Forum: DCMTK - General
Topic: Mandatory Fields on C-FIND-RSP
Replies: 4
Views: 6040

Thanks!
by Juan Bravo
Mon, 2006-07-24, 09:07
Forum: DCMTK - General
Topic: Mandatory Fields on C-FIND-RSP
Replies: 4
Views: 6040

Mandatory Fields on C-FIND-RSP

Hi again, When using FINDSCU against DCMQRSCP or against any public server , I always get more fields than expected on the response.. Example: When searching for any Dicom Object that match: (0010,0010)="" // any patients name I get the response ( public server ): (0008,0005) CS [ISO_IR 10...
by Juan Bravo
Fri, 2006-07-21, 11:29
Forum: DCMTK - General
Topic: SOLVED: Creating a FIND-RSP sequence
Replies: 1
Views: 3368

This is the correct pseudocode,

// LAST RESPONSE
rsp.DimseStatus = 0; // STATUS_Success
rspIds=NULL;
DIMSE_sendFindResponse(assoc, presIdCmd, request, &rsp, rspIds, statusDetail);

I forgot to clear pointer adress!