Search found 24 matches

by candy
Mon, 2010-04-19, 08:25
Forum: DCMRT
Topic: How to visualize the RT Structure object?
Replies: 6
Views: 21246

Oliver Nix wrote:I can provide a piece of code that reads structures and returns the point coordinates as multidimensional stl::vector, if this would be helpful.
That will be very grateful to you!Please mail the piece of code to christcandy@yahoo.cn.
Best Regards,
Candy
by candy
Thu, 2010-04-15, 16:10
Forum: DCMRT
Topic: LINK ERRORS 2005
Replies: 1
Views: 13819

LINK ERRORS 2005

Hi I want to test my simple codes , I added the ofstd.lib oflog.lib dcmdata.lib dcmrt.lib zlib_d.lib which are in the drttest dsp. int main() { OFCondition status; DcmFileFormat fileformat; DRTStructureSetIOD rtstruct; status = fileformat.loadFile(RTSTRUCT_FILENAME); if (status.good()) { status = rt...
by candy
Thu, 2010-04-15, 15:15
Forum: DCMRT
Topic: How to visualize the RT Structure object?
Replies: 6
Views: 21246

How to visualize the RT Structure object?

Hi J
by candy
Thu, 2010-04-15, 15:03
Forum: DCMRT
Topic: error LNK2001
Replies: 4
Views: 15447

[quote="J
by candy
Fri, 2010-04-09, 04:59
Forum: DCMRT
Topic: error LNK2001
Replies: 4
Views: 15447

Yes,Problems solved. In drttest.cpp #define RTDOSE_FILENAME "/share/dicom/images/dkfz-rt/Phantom/RD1.3.6.1.4.1.2452.6.2742071499.1301053063.852537260.1034784.dcm" #define RTIMAGE_FILENAME "/share/dicom/images/dkfz-rt/Phantom/RI1.3.6.1.4.1.2452.6.2440400960.1328333180.1418898622.324303...
by candy
Thu, 2010-04-08, 15:18
Forum: DCMRT
Topic: error LNK2001
Replies: 4
Views: 15447

error LNK2001

Hi J
by candy
Wed, 2010-04-07, 14:02
Forum: DCMRT
Topic: Where can I download the DCMTK module for radiation therapy?
Replies: 3
Views: 16058

[quote="J
by candy
Mon, 2009-12-14, 03:32
Forum: DCMRT
Topic: Where can I download the DCMTK module for radiation therapy?
Replies: 3
Views: 16058

Where can I download the DCMTK module for radiation therapy?

I found at this webpage http://support.dcmtk.org/docs-dcmrt/ , There is a dcmrt module included in the DCMTK.So I want to download this vision.
But I can't find it.
Thank you!
by candy
Thu, 2009-07-09, 13:55
Forum: DCMTK - General
Topic: DICOM RT
Replies: 1
Views: 2825

DICOM RT

Hi,
Can I use dcmtk to develop DICOM ? If OK, Can you give me some ideas about how to do with it?
such as how to present the RT Image or others.
I am quite confused.
Best Regards.
Candy
by candy
Wed, 2009-05-06, 04:08
Forum: DCMTK - General
Topic: findscu
Replies: 3
Views: 5838

I felt strange too. I use eFilm 3.0.1 as SCP. So I didn't follow the worng steps in the command line,did I? The result was caused by eFilm 3.0.1?
I only want to know it. :lol:
by candy
Mon, 2009-04-27, 10:29
Forum: DCMTK - General
Topic: findscu
Replies: 3
Views: 5838

findscu

HI, I confused about these problem. In the command line : findscu -v -d -P -aec ws -k 0008,0052="IMAGE" -k 0010,0020="GE0514" -k 0020,000D="1.2.840.113674.514.212.200" -k 0020,000E="1.2.840.113674.514.212.82.300" -k 0008,0018 localhost 4006 Then I got these: R...
by candy
Tue, 2009-04-21, 09:13
Forum: DCMTK - General
Topic: Association Request Failed--FINDSCU
Replies: 2
Views: 7010

Association Request Failed--FINDSCU

HI, I have a question about FINDSCU, In the command line ,I wrote: findscu -v -P -k 0008,0052="IMAGE" -k 0010,0020="GE0514" -k 0020,000D="1.2.840.113674.514.212.200" -k 0020,000E="1.2.840.113674.514.212.82.300" -k 0008,0018="1.2.840.113674." localhos...
by candy
Wed, 2009-04-15, 09:56
Forum: DCMTK - General
Topic: Can not create a dcm file from bmp file
Replies: 2
Views: 5103

Thank you so much! I will read the standards thoroughly. You are right! Forgive my so simple questions! I will keep on going to study DICOM with your dcmtk toolkit!
by candy
Wed, 2009-04-15, 08:51
Forum: DCMTK - General
Topic: Can not create a dcm file from bmp file
Replies: 2
Views: 5103

Can not create a dcm file from bmp file

HI,I Want to create a dcm file from a 8-bits bmp file which was converted from a dcm file. The bmp file's biCompression is 0. There are my codes: void main() { DcmFileFormat fileformat; DcmDataset *dataset = fileformat.getDataset(); dataset->putAndInsertString(DCM_ImageType,"ORIGINAL"); da...
by candy
Fri, 2009-04-10, 09:54
Forum: DCMTK - General
Topic: get pixel data
Replies: 5
Views: 6093

get pixel data

Hi , I have a problem which is that I want to get the pixel data in the image . There is my codes: DcmDataset *FDset =dfile->getDataset(); Uint8 *pixelData =NULL; unsigned long pcount; OFCondition statue; statue=FDset->findAndGetUint8Array(DCM_PixelData,pixelData,&pcount); cout<<pcount<<endl; if...