Search found 3 matches

by codroe
Thu, 2006-01-19, 16:57
Forum: DCMTK - General
Topic: Managing Private Creators
Replies: 5
Views: 6107

Well, that's simple. You cannot use putFloat64() (which is what putAndInsertFloat64() internally does) on attributes of DS value representation (i.e., class DcmDecimalString). You really have to pass a string here. Use OFStandard::ftoa() for a locale-safe conversion to string and pass the result to...
by codroe
Thu, 2006-01-19, 02:45
Forum: DCMTK - General
Topic: Managing Private Creators
Replies: 5
Views: 6107

Thanks for that code. I seem to be stumbling on an earlier part I am afraid so if anybody can offer some advice it would be most helpful. What code do I use to insert a double into the tag from my dictionary: (00fd,"MVL-SMF",01) DS PhotonOutputMeasurement 1 I have tried: DcmTag privateCrea...
by codroe
Wed, 2006-01-18, 03:14
Forum: DCMTK - General
Topic: Managing Private Creators
Replies: 5
Views: 6107

Managing Private Creators

I am using the dcmtk library within a research application I am developing. I am trying to define a set of private tags to store extra configuration information required by my application. I have defined the tags in my private dictionary, for example: (00fd,"MVL-SMF",01) DS PhotonOutputMea...