Effacer les filtres
Effacer les filtres

d'unité Hounsfield (UH) faux

1 vue (au cours des 30 derniers jours)
Med
Med le 13 Mai 2024
Commenté : Cris LaPierre le 4 Juin 2024
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

Réponse acceptée

Cris LaPierre
Cris LaPierre le 13 Mai 2024
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 commentaires
Med
Med le 3 Juin 2024
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 le 4 Juin 2024
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

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by