Pixel Spacing: Physical distance in the patient between the center of each pixel. 像素间距. 像素中心之间的物理间距. DS 0028 0100 Bits Allocated: Number of bits allocated for each pixel sample. Each sample shall have the same number of bits allocated. 分配的位数: 存储每一个像素值时分配的位数...
publicFrameGeometry(DicomDataset image) :this(image.GetString(DicomTag.FrameOfReferenceUID), image.GetValues<double>(DicomTag.ImagePositionPatient), image.GetValues<double>(DicomTag.ImageOrientationPatient), image.GetValues<double>(DicomTag.PixelSpacing), image.GetSingleValue<int>(DicomTag.Columns), i...
Pixel Spacing: Physical distance in the patient between the center of each pixel. 像素间距. 像素中心之间的物理间距. DS 0028 0100 Bits Allocated: Number of bits allocated for each pixel sample. Each sample shall have the same number of bits allocated. 分配的位数: 存储每一个像素...
DICOM之PixelSpaceing 自从入职新公司后,一直比较忙,人也更懒了,所以一直没有写新的博客。最近得闲,会把半年来学到的一些东西陆续分享给大家。 今天主要分享一下dicom图片中的像素间距的问题。 dicom中关于像素间距的tag主要有四个 1. (0028,0030) [DS] PixelSpacing 解释:校正或者修正后的像素间距 2.&nbs.....
DICOM的常用Tag分类和说明 DICOM的常⽤Tag分类和说明Group Element Tag Description 中⽂解释 VR 0008 0008 Image Type:Image identification characteristics.CS 0008 0018 SOP Instance UID SOP实例UID.0008 0023 Content Date:The date the image pixel data creation started.影像拍摄的⽇期.DA 0008 0033 Cont...
DICOM的常用Tag分类和说明 1.前言:基于DICOM3.0标准的医学图像中,每一张图像中都携带着许多的信息,这些信息主要可以分为Patient, Study, Series和Image四类。每一个DICOM Tag都是由两个十六进制数的组合来确定的,分别为Group和Element。如(0010,0010)这个Tag表示的是Patient’s Name,它存储着这张DICOM图像的...
DICOM的常用Tag分类和说明 基于DICOM3.0标准的医学图像中,每一张图像中都携带着许多的信息,这些信息主要可以分为Patient, Study, Series和Image四类。每一个DICOM Tag都是由两个十六进制数的组合来确定的,分别为Group和Element。如(0010,0010)这个Tag表示的是Patient’s Name,它存储着这张DICOM图像的患者姓名。
搜索(Search)功能非常简单。点击激活标签页后,在输入框中输入想要搜索的关键词就可以。例如下图中,输入“pixel spacing',就得到包含这个DICOM Attribute的CIOD的列表。点击列表中的项目,就可以查看相应的详细信息。 另外,输入DICOM Tag也可以,如下图。 真正的价值:查看和修改DICOM信息,尤其是结构化报告 ...
print(ds.data_element('PatientID')) # 打印一个完整的数据元素,包括 DICOMTAG编码值(Group, Element), VR, Value print(ds.data_element('PatientID').VR, ds.data_element('PatientID').value) pixel_bytes = ds.PixelData # 原始二进制文件 ...
dicom_file.PixelSpacing = [str(pixel_spacing[0]),str(pixel_spacing[1])]# Generate and set a unique SOP Instance UID for each DICOM file每张dicom唯一DICOM文件中的0008 0018是指SOP Instance UIDdicom_file.SOPInstanceUID = pydicom.uid.generate_uid()# Update the Image Position (Patient) and Im...