Search found 4 matches

by xx_zx
Sun, 2009-11-22, 06:33
Forum: DCMTK - General
Topic: How to use findAndGetFloat64?
Replies: 1
Views: 3453

How to use findAndGetFloat64?

I am trying to use findAndGetFloat64 to get contour points in structure file. My code is shown below: const Float64* dataArray; m_status = item->findAndGetFloat64Array(DCM_ContourData, dataArray); However, I can not get any any value in the dataArray. OFCondition shows following information: theCond...
by xx_zx
Fri, 2009-11-13, 02:02
Forum: DCMTK - General
Topic: Problem with finding MediaStorageSOPInstanceUID
Replies: 1
Views: 2984

Problem with finding MediaStorageSOPInstanceUID

I had troubles getting the value of DCM_MediaStorageSOPInstanceUID. When I use findAndGetOFString() function, I got nothing but empty OFString. But the DCM_MediaStorageSOPInstanceUID item DOES exist when I dump it out. Could anyone help me out? Thanks.
by xx_zx
Mon, 2009-11-09, 16:26
Forum: DCMTK - General
Topic: How to modify DCM_ImagePositionPatient
Replies: 2
Views: 3908

Jörg Riesmeier wrote:Use the DICOM notation, i.e. separate the values by a backslash, e.g. "1.0\1.0\1.0". (NB: In your source code, you need to double the backslashes, i.e. use "1.0\\1.0\\1.0".)
oh, right. how shouldn't I come up with that. Thanks!
by xx_zx
Mon, 2009-11-09, 08:23
Forum: DCMTK - General
Topic: How to modify DCM_ImagePositionPatient
Replies: 2
Views: 3908

How to modify DCM_ImagePositionPatient

I tried to modify DCM_ImagePositionPatient but failed. The VR of DCM_ImagePositionPatient is DS which should be modified by putAndInsertString, right? But I can not find position parameter that can specify 3 coordinates.
What should do?