本文整理汇总了Python中pydicom.dataset.Dataset.PixelRepresentation方法的典型用法代码示例。如果您正苦于以下问题:Python Dataset.PixelRepresentation方法的具体用法?Python Dataset.PixelRepresentation怎么用?Python Dataset.PixelRepresentation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pydicom.dataset.Dataset
的用法示例。
在下文中一共展示了Dataset.PixelRepresentation方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_lut_descriptor
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_lut_descriptor(self):
"""Test correcting elements which require LUTDescriptor."""
ref_ds = Dataset()
ref_ds.PixelRepresentation = 0
# If LUTDescriptor[0] is 1 then LUTData VR is 'US'
ref_ds.LUTDescriptor = b'\x01\x00\x00\x01\x10\x00' # 1\256\16
ref_ds.LUTData = b'\x00\x01' # Little endian 256
ds = correct_ambiguous_vr(deepcopy(ref_ds), True) # Little endian
self.assertEqual(ds.LUTDescriptor[0], 1)
self.assertEqual(ds[0x00283002].VR, 'US')
self.assertEqual(ds.LUTData, 256)
self.assertEqual(ds[0x00283006].VR, 'US')
# If LUTDescriptor[0] is not 1 then LUTData VR is 'OW'
ref_ds.LUTDescriptor = b'\x02\x00\x00\x01\x10\x00' # 2\256\16
ref_ds.LUTData = b'\x00\x01\x00\x02'
ds = correct_ambiguous_vr(deepcopy(ref_ds), True) # Little endian
self.assertEqual(ds.LUTDescriptor[0], 2)
self.assertEqual(ds[0x00283002].VR, 'US')
self.assertEqual(ds.LUTData, b'\x00\x01\x00\x02')
self.assertEqual(ds[0x00283006].VR, 'OW')
# If no LUTDescriptor then VR should be unchanged
ref_ds = Dataset()
ref_ds.LUTData = b'\x00\x01'
ds = correct_ambiguous_vr(deepcopy(ref_ds), True)
self.assertEqual(ds.LUTData, b'\x00\x01')
self.assertEqual(ds[0x00283006].VR, 'US or OW')
示例2: test_endianness_not_set
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_endianness_not_set(self):
"""Test for #704, Dataset.is_little_endian unset."""
ds = Dataset()
ds.file_meta = Dataset()
ds.file_meta.TransferSyntaxUID = ExplicitVRLittleEndian
ds.Rows = 10
ds.Columns = 10
ds.BitsAllocated = 16
ds.PixelRepresentation = 0
ds.SamplesPerPixel = 1
arr = np.ones((10, 10), dtype='uint16')
ds.PixelData = arr.tobytes()
assert ds.pixel_array.max() == 1
示例3: test_pixel_representation_vm_three
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_pixel_representation_vm_three(self):
"""Test correcting VM 3 elements which require PixelRepresentation."""
ref_ds = Dataset()
# If PixelRepresentation is 0 then VR should be US - Little endian
ref_ds.PixelRepresentation = 0
ref_ds.LUTDescriptor = b'\x01\x00\x00\x01\x10\x00' # 1\256\16
ds = correct_ambiguous_vr(deepcopy(ref_ds), True)
self.assertEqual(ds.LUTDescriptor, [1, 256, 16])
self.assertEqual(ds[0x00283002].VR, 'US')
# If PixelRepresentation is 1 then VR should be SS
ref_ds.PixelRepresentation = 1
ref_ds.LUTDescriptor = b'\x01\x00\x00\x01\x00\x10'
ds = correct_ambiguous_vr(deepcopy(ref_ds), False)
self.assertEqual(ds.LUTDescriptor, [256, 1, 16])
self.assertEqual(ds[0x00283002].VR, 'SS')
# If no PixelRepresentation then should be unchanged
ref_ds = Dataset()
ref_ds.LUTDescriptor = b'\x01\x00\x00\x01\x00\x10'
ds = correct_ambiguous_vr(deepcopy(ref_ds), False)
self.assertEqual(ds.LUTDescriptor, b'\x01\x00\x00\x01\x00\x10')
self.assertEqual(ds[0x00283002].VR, 'US or SS')
示例4: test_pixel_representation_vm_one
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_pixel_representation_vm_one(self):
"""Test correcting VM 1 elements which require PixelRepresentation."""
ref_ds = Dataset()
# If PixelRepresentation is 0 then VR should be US
ref_ds.PixelRepresentation = 0
ref_ds.SmallestValidPixelValue = b'\x00\x01' # Little endian 256
ds = correct_ambiguous_vr(deepcopy(ref_ds), True)
self.assertEqual(ds.SmallestValidPixelValue, 256)
self.assertEqual(ds[0x00280104].VR, 'US')
# If PixelRepresentation is 1 then VR should be SS
ref_ds.PixelRepresentation = 1
ref_ds.SmallestValidPixelValue = b'\x00\x01' # Big endian 1
ds = correct_ambiguous_vr(deepcopy(ref_ds), False)
self.assertEqual(ds.SmallestValidPixelValue, 1)
self.assertEqual(ds[0x00280104].VR, 'SS')
# If no PixelRepresentation then should be unchanged
ref_ds = Dataset()
ref_ds.SmallestValidPixelValue = b'\x00\x01' # Big endian 1
ds = correct_ambiguous_vr(deepcopy(ref_ds), True)
self.assertEqual(ds.SmallestValidPixelValue, b'\x00\x01')
self.assertEqual(ds[0x00280104].VR, 'US or SS')
示例5: test_correct_ambiguous_explicit_vr
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_correct_ambiguous_explicit_vr(self):
"""Test correcting ambiguous VR elements read from file"""
ds = Dataset()
ds.PixelRepresentation = 0
ds.add(DataElement(0x00280108, 'US', 10))
ds.add(DataElement(0x00280109, 'US', 500))
fp = BytesIO()
file_ds = FileDataset(fp, ds)
file_ds.is_implicit_VR = False
file_ds.is_little_endian = True
file_ds.save_as(fp, write_like_original=True)
ds = dcmread(fp, force=True)
self.assertEqual(ds[0x00280108].VR, 'US')
self.assertEqual(ds.SmallestPixelValueInSeries, 10)
示例6: test_write_explicit_vr_big_endian
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def test_write_explicit_vr_big_endian(self):
"""Test writing explicit big data for ambiguous elements."""
# Create a dataset containing element with ambiguous VRs
ref_ds = Dataset()
ref_ds.PixelRepresentation = 1
ref_ds.SmallestValidPixelValue = b'\x00\x01' # Big endian 1
fp = BytesIO()
file_ds = FileDataset(fp, ref_ds)
file_ds.is_implicit_VR = False
file_ds.is_little_endian = False
file_ds.save_as(fp)
fp.seek(0)
ds = read_dataset(fp, False, False)
self.assertEqual(ds.SmallestValidPixelValue, 1)
self.assertEqual(ds[0x00280104].VR, 'SS')
示例7: _create_temporary_dataset
# 需要导入模块: from pydicom.dataset import Dataset [as 别名]
# 或者: from pydicom.dataset.Dataset import PixelRepresentation [as 别名]
def _create_temporary_dataset(shape=(100, 1024, 1024, 3), bit_depth=16):
"""Function to create a temporary dataset for use in testing.
Parameters
----------
shape : 4-tuple
The (frames, rows, columns, channels) of the test dataset.
bit_depth : int
The BitsAllocated value to use for the dataset, one of 8, 16, 32, 64.
Returns
-------
tempfile.TemporaryFile
A created DICOM File Format conformant dataset.
"""
ds = Dataset()
ds.is_little_endian = True
ds.is_implicit_VR = False
ds.file_meta = Dataset()
ds.file_meta.TransferSyntaxUID = ExplicitVRLittleEndian
ds.SOPClassUID = '1.2.3.4'
ds.SOPInstanceUID = generate_uid()
ds.BitsAllocated = bit_depth
ds.PixelRepresentation = 0
ds.PlanarConfiguration = 0
ds.Rows = shape[1]
ds.Columns = shape[2]
ds.NumberOfFrames = shape[0]
ds.SamplesPerPixel = shape[3]
if shape[3] == 1:
ds.PhotometricInterpretation = 'MONOCHROME2'
elif shape[3] == 3:
ds.PhotometricInterpretation = 'RGB'
arr = np.zeros(shape, dtype='uint{}'.format(bit_depth))
ds.PixelData = arr.tobytes()
if len(ds.PixelData) % 2:
ds.PixelData += b'\x00'
tfile = TemporaryFile(mode='w+b')
ds.save_as(tfile, write_like_original=False)
tfile.seek(0)
return tfile