Borrar filtros
Borrar filtros

read array of image radial

1 visualización (últimos 30 días)
fatimah towailib
fatimah towailib el 27 de Dic. de 2016
Comentada: Image Analyst el 27 de Dic. de 2016
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

Respuestas (1)

Walter Roberson
Walter Roberson el 27 de Dic. de 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 comentario
Image Analyst
Image Analyst el 27 de Dic. de 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?

Iniciar sesión para comentar.

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!

Translated by