Ich möchte nach dieser Funktion in Matlab dicomread
Beispiel:
%Vor%das Bild zeigte auf dem Bildschirm, aber es ist sehr dunkel ..... Ich frage mich, wie es dunkel und nicht normal ist. Ich habe verschiedene DICOM-Bilder überprüft, aber das Problem bleibt bestehen. Ich hoffe du kannst mir helfen und Danke im Voraus.
dicomread
gibt ein Multiband-Bild zurück.
Versuchen Sie
%Vor%Versuchen Sie
im = dicomread('image.dcm');
im = im2double(im); % this line to convert from uint16 to double
im = mat2gray(im); % this line to put the data in range [0,1]
figure;imshow(im);
Tags und Links matlab image-processing dicom