d'unité Hounsfield (UH) faux

1 次查看(过去 30 天)
J'ai des images de scanner au format DICOM. Lorsque j'utilise MicroDicom pour les visualiser, je trouve une plage d'unité Hounsfield (UH) entre -1000 et 2000, ce qui est normal. mais lorsque j'utilise la fonction dicomread sur Matlab, je trouve des matrices contenant des valeurs entre 0 et 4000. S'il vous plaît j'ai besoin d'aide

采纳的回答

Cris LaPierre
Cris LaPierre 2024-5-13
dicomread loads the raw pixel intensity values. You need to use the RescaleSlope and RescaleIntercept metadata properties to convert the intensity values into Hounsfield Units. The equation for this is
A better option is to use the new medicalImage (2D images) and MedicalVolume (3D volumes) functions to load your dicom file (included in the Medical Imaging Toolbox). The resulting object contains the pixel or voxel property values already scaled to Hounsfield Units.
A third option is to use the getPixelData function to load your dicom files. By default, this will rescale the pixel values in the rescale metadata properties are found in the file.
  3 个评论
Med
Med 2024-6-3
svp comment je peux modifier les valeurs de matrice corspond a l'image selon les paramètres windowcentre et windowwidth de matadata
Cris LaPierre
Cris LaPierre 2024-6-4
windowcenter and windowwidth do not modify the matrix values. They set the display range, which affect brightness and contrast. You can do that using imshow(I,[low high])
Typicaly, low would be windowcenter - windowwidth/2 and high would be windowcenter + windowwidith/2

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by