read array of image radial
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have file that contain array of images. I read image in x,y direction this mean axial know i need to read it in z direction which is radial. the question that Dr give me is: Q/Find the axial and radial resolution after every 10 slices. for axial i did it for radial not yet
0 Kommentare
Antworten (1)
Walter Roberson
am 27 Dez. 2016
Image arrays do not contain information about resolution. Image files might contain information about resolution, but unless they are DICOM images (or perhaps PNG produced by scientific microscopes), any resolution information they contain is likely to be wrong.
If you have a DICOM file that contains a number of slices, then the z spacing has to be read from the DICOM metadata. Typically the z spacing is given as a scalar -- the space between slices is a constant typically. The z resolution is really not something you calculate, it is something you read out from the metadata.
However, if there happened to be something of known size that was present in every slice, then you could potentially calculate the resolution from the images themselves. For medical images, this typically only happens if you are running a "phantom" (imaging a non-medical object of known properties.)
1 Kommentar
Image Analyst
am 27 Dez. 2016
What kind of file is it? If it's a dicom file, do this:
info = dicominfo(filename)
What does it show in the command window?
Siehe auch
Kategorien
Mehr zu DICOM Format finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!