0

CT データセットを視覚化するときにハウンズフィールドの値がどのように処理されるのか疑問に思っています。HU 単位の範囲には、処理に問題がある可能性のある負の値が含まれているため (たとえば、レイ キャスティング中に減衰係数を乗算する場合)、範囲 [0,1] に変換されると想定しています。ここで、0 は空気を表します ( -1000 HU) と 1 ボーン (~3000 HU)。

私はこの仮定で正しいですか?すべての実数が浮動小数点で表現できるわけではないという問題はどのように処理されますか?

4

1 に答える 1

0

Hounsfield Units are calibrated to water ie water = 0 and should not be confused with the attenuation coefficients which are a function of the machine, whatever filters you are using & the materials being scanned.

HU are usually stored as signed integers so are rounded to the nearest number.

The volumetric rendering is done based on HUs. So data collected by the scanner is converted to integers and then the images are reconstructed. For display purposes its the HUs that are rescaled depending on the scanner either 0 to 65535 (for 16 bit) or 0 to 2147483647 (for 32 bit). Where 0 is air.

This seems an odd question for Stackoverflow.

于 2015-08-01T15:15:49.283 に答える