0

I am trying to figure out the meaning of RescaleType = 'LOG_E REL' in a DICOM file. To be more specific, I need to know how to process the raw pixel values to get the image displayed in a proper way. Up to now I have only seen files with RescaleType = 'P-VALUES', which seemed to be correctly processed when applying formula:

pixVal = rescaleIntercept + rescaleSlope * pixRaw.

What would be the rescaling formula to apply when RescaleType = 'LOG_E REL'?

4

2 回答 2

1

我不确定这个值是 Dicom 标准的一部分,还是只是给定制造商的特定值。

我之所以这么说,是因为我只看到了旧的(当前已停止服务)Agfa ADC compact CR生成的图像的这些值

在文档中,您可以阅读:

LOG_E REL:像素值与图像板上的 Log Exposure 线性相关;最大像素值对应于最小像素值的 LogE 之上 3.2767 的 delta LogE;在这种情况下,存在一个 VOI 模块(排序项),还包含一个查找表。仅支持 12 位。

我不知道您是否应该应用重新缩放公式,或者这只是与已应用于原始图像的某种后处理算法相关的注释。

我假设您应该只应用给定的 VOI LUT 而不是尝试应用重新缩放方程。

于 2013-08-29T05:57:16.677 回答
0

如果您可以分享此类数据集的示例,将会有所帮助。无论如何,我相信这是一个 Type 3 标签,在这种情况下,信息并不是真正需要的。只需像往常一样应用重新缩放斜率/截距,看看它做了什么。

于 2013-09-03T06:28:49.430 回答