How to multiply all the pixel number of each slice with their own rescale slope(dicominfo) in each slice
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
mohd akmal masud
el 26 de Jun. de 2023
Respondida: Rik
el 27 de Jun. de 2023
Dear all,
I have the file as attached. the format is dicom (.dcm)
How to multiply all the pixel number of each slice with their own rescale slope(in dicominfo) in each slice?
**that means each slice have their own rescale slope value.
so that the new pixel value will come out when I view this images.
4 comentarios
Rik
el 27 de Jun. de 2023
What leads you to believe the rescale slope and intercept might be different for each slice?
Respuesta aceptada
Rik
el 27 de Jun. de 2023
In general you should remember to include the intercept as well, although apparently that is 0 for this dataset.
unzip jaszakspect.zip
IM = dicomread('jaszakspect.dcm');
size(IM)
info = dicominfo('jaszakspect.dcm');
[min(IM(:)) max(IM(:))]
IM = double(IM)*info.RescaleSlope + info.RescaleIntercept;
[min(IM(:)) max(IM(:))]
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre DICOM Format en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!