Search found 26 matches

by visDicare
Thu, 2012-11-08, 06:00
Forum: DCMTK - General
Topic: How to read a dcm file which contains multiple frame data?
Replies: 2
Views: 3775

How to read a dcm file which contains multiple frame data?

Hi all,
I have one dcm file, it contains multiple frames data.
I read the file, but my program only show the first frame data, so how can I show all the frames data?
Or, how can I convert theis single dcm file to multiple dcm files?
Thanks!
by visDicare
Wed, 2012-06-27, 04:52
Forum: DCMTK - General
Topic: How to read dicom image files in a directory?
Replies: 4
Views: 5123

Re: How to read dicom image files in a directory?

Michael Onken wrote:Hi,

I don't know, try :) I never did 3D rendering or VTK import so far by myself.

Best,
Michael
Thanks.
by visDicare
Tue, 2012-06-26, 02:05
Forum: DCMTK - General
Topic: How to read dicom image files in a directory?
Replies: 4
Views: 5123

Re: How to read dicom image files in a directory?

Thanks in advance!And actually I am using VTK do the 3D volumn rendering. And I also found this: viewtopic.php?t=1273&start=0&postdays=0 ... conversion
Is that working?
by visDicare
Mon, 2012-06-25, 08:34
Forum: DCMTK - General
Topic: How to read dicom image files in a directory?
Replies: 4
Views: 5123

How to read dicom image files in a directory?

Hi Guys,
I am trying to read dicom image files in a directory. I want to get the data volume(3D array of pixel data). And Sometimes there's not only one series of CT image files in the directory. Can anyone share some idea or examples with me? Thanks very much!
by visDicare
Wed, 2012-06-13, 04:21
Forum: DCMTK - General
Topic: About "dcmtk-3.6.1_20120515" compile on VS2005
Replies: 1
Views: 2669

About "dcmtk-3.6.1_20120515" compile on VS2005

Hi all, Who does compile "dcmtk-3.6.1_20120515" on VS2005(win7) success? Would you like share your experience? I can use the same configure to compile success of "dcmtk-3.6.1_20120222" , but "dcmtk-3.6.1_20120222" fail。 In addition, I need "libiconv" toolkit, ...
by visDicare
Tue, 2012-06-12, 09:43
Forum: DCMTK - General
Topic: About messy code
Replies: 4
Views: 4802

Re: About messy code

Thanks your help and your advice!
by visDicare
Tue, 2012-06-12, 08:56
Forum: DCMTK - General
Topic: About messy code
Replies: 4
Views: 4802

Re: About messy code

Hi, Where did you read that "UTF-8" is the correct term for UTF-8? It's "ISO_IR 192" (see section C.12.1.1.2 in part 3 of the DICOM standard). I am wrong, sorry! what is the value of SpecificCharacterSet (0008,0005) in the C-FIND response? If it's not present, only ASCII characte...
by visDicare
Tue, 2012-06-12, 08:09
Forum: DCMTK - General
Topic: About messy code
Replies: 4
Views: 4802

About messy code

Hi all, I use the example: http://support.dcmtk.org/wiki/dcmtk/howto/dcmscu-example to query patient info the public DICOM server http://www.dicomserver.co.uk . And show these information on GUI (design by wxPython), but some info are messy code, my system is set to UTF-8. I set DCM_SpecificCharacte...
by visDicare
Tue, 2012-06-12, 07:55
Forum: DCMTK - General
Topic: Can not get the PatientName,PatientId...
Replies: 5
Views: 7689

Re: Can not get the PatientName,PatientId...

Thank you very much!
by visDicare
Fri, 2012-06-08, 10:12
Forum: DCMTK - General
Topic: Can not get the PatientName,PatientId...
Replies: 5
Views: 7689

Re: Can not get the PatientName,PatientId...

By the way, If I set the DCM_QueryRetrieveLevel to "STUDY" and get the StudyInstanceUID, and then use it to query Series number, the run time will more than 40 times. The code like below: OFList<QRResponse*> findResponses; DcmDataset dataSet; dataSet.putAndInsertOFStringArray(DCM_QueryRetr...
by visDicare
Fri, 2012-06-08, 09:58
Forum: DCMTK - General
Topic: Can not get the PatientName,PatientId...
Replies: 5
Views: 7689

Re: Can not get the PatientName,PatientId...

Thanks!
This is something you should ask the author(s) of DCM4CHEE.
You mean the DCM4CHEE does not match with the DICOM standard?

Oh, my god!
by visDicare
Fri, 2012-06-08, 08:14
Forum: DCMTK - General
Topic: Can not get the PatientName,PatientId...
Replies: 5
Views: 7689

Can not get the PatientName,PatientId...

Hi all, I use the example: http://support.dcmtk.org/wiki/dcmtk/howto/dcmscu-example to query information from the public DICOM server http://www.dicomserver.co.uk . And I modify the example like below: /* Assemble and send C-FIND request */ OFList<QRResponse*> findResponses; DcmDataset dataSet; data...
by visDicare
Fri, 2012-06-01, 09:22
Forum: DCMTK - General
Topic: How to insert Multi-valued tag into a dataset?
Replies: 4
Views: 4578

Re: How to insert Multi-valued tag into a dataset?

Hi, I do it like below, of course, you can use loop. DcmDataset dataSet; dataSet.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "STUDY"); dataSet.putAndInsertOFStringArray(DCM_PatientID, value); dataSet.putAndInsertOFStringArray(DCM_PatientName, value); dataSet.putAndInsertOFStringArray...
by visDicare
Wed, 2012-05-30, 06:22
Forum: DCMTK - General
Topic: WarningUnsupportedOptionalKeys
Replies: 4
Views: 4254

Re: WarningUnsupportedOptionalKeys

Thanks!