目次
DataElement.showVR
1.概要
DataElementを文字列表示する場合に、VRを表示するか指定できます。
2.引数
なし
次のようにすると直接値を設定することができます。(default:True)
DataElement.showVR = True / False
3.戻り値
型:bool
設定されている値を返します。
4.使用例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import pydicom from pydicom.data import get_testdata_files filename = get_testdata_files('MR_small.dcm')[0] ds = pydicom.dcmread(filename) # showVRが True の場合、VRの値も表示されます。 ds[0x00100010].showVR = True # default True print(ds[0x00100010]) # return # (0010, 0010) Patient's Name PN: 'CompressedSamples^MR1' # showVRが False の場合、VRの値は表示されません。 ds[0x00100010].showVR = False print(ds[0x00100010]) # return # (0010, 0010) Patient's Name 'CompressedSamples^MR1' |