How to write DICOM ReferringPhysicianName metadata?

3 ビュー (過去 30 日間)
Daniel Bridges
Daniel Bridges 2018 年 2 月 6 日
編集済み: Daniel Bridges 2018 年 2 月 6 日
In the RT Dose DICOM files exported from MIM there is the ReferringPhysicianName structure with FamilyName, MiddleName, and GivenName structure-subset tags. How do you write data to each subset element? I have only found how to fill data on the 'first' level, which goes into the FamilyName removing the MiddleName and GivenName subsets.
For example, this code works:
dicomwrite(blurreddose,filename,doseinfo,'DoseSummationType','PLAN','SeriesDescription','Feb. 2018 blurring of planned beams',...
'ReferringPhysicianName','Robinson','DoseUnit','RELATIVE','DoseGridScaling',num2str(DoseGridScaling),'CreateMode','copy');
but trying something like
'ReferringPhysicianName.FamilyName','Robinson','ReferringPhysicianName.GivenName','Walter'
gave the error that there was no DICOM tag with that name (as I recall). The dicomwrite documentation doesn't specify how to specify this substructure format.

採用された回答

Walter Roberson
Walter Roberson 2018 年 2 月 6 日
I see something indicating you should use ^ between the parts.
  1 件のコメント
Daniel Bridges
Daniel Bridges 2018 年 2 月 6 日
編集済み: Daniel Bridges 2018 年 2 月 6 日
Indeed, the parameter-value combination
'ReferringPhysicianName','Last^Given^Middle'
works. Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDICOM Format についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by