import_mim_dvh

Read a dose volume histogram (DVH) exported from MIM
ダウンロード: 157
更新 2016/10/24

ライセンスの表示

structures = import_mim_dvh(filename) reads and parses comma seperated value (.csv)
mim DVH filename and returns structures, an array of structs corresponding to the
structures on the DVH. the structures in the array have the following fields:

name: name of structure
dose: vector of dose (x axis of DVH)
volume: vector of % volume (y axis of DVH)
totalvolume: volume of this structure
example: read a DVH and plot dose vs. volume for the ptv
>> structures = import_mim_dvh(filename);
>> structures(1).name
ans =
ptv
>> figure; plot(structures(1).dose, structures(1).volume); title(structures(1).name);

引用

Dylan O'Connell (2024). import_mim_dvh (https://www.mathworks.com/matlabcentral/fileexchange/59923-import_mim_dvh), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2016a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersHistograms についてさらに検索
謝辞

ヒントを得たファイル: 3D Free Form Image Registration Toolbox (GUI), dicomfolder

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

Changed tags.

1.0.0.0