Hello
i am developing the dicom reader dicom is imaging standerd file format and i have to extract the differents tags and images from it so how to read the image and tag


thanks :)

Got one sample.
% Preallocate the 256-by-256-by-1-by-20 image array.
X = repmat(int16(0), [256 256 1 20]);

% Read the series of images.
for p=1:20
filename = sprintf('brain_%03d.dcm', p);
X(:,:,1,p) = dicomread(filename);
end

% Display the image stack.
montage(X,[])

For Dicomm images, Matlab provide a good c Api's. I would prefer u to Use Python for it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.