rescale for making isotropic voxels

3 visualizaciones (últimos 30 días)
bahar cham
bahar cham el 13 de En. de 2012
Comentada: Image Analyst el 11 de Mayo de 2018
Hello all,
Can I make an isotropic 336*512 matrix? my teacher says i can add zero pixels to 336 but i want to expand method to 336*512*112 matrix and make an isotropic voxels.
Thanks in advance

Respuesta aceptada

Image Analyst
Image Analyst el 13 de En. de 2012
How to make a 2D isotropic matrix:
m = value * ones(336,512); % You pick what you want "value" to be.
How to add zero pixels (i.e. nothing to add at all) to 336:
336
How to make a 3D isotropic matrix:
m3D = value * ones(336,512,112); % You pick what you want "value" to be.
  7 comentarios
Stelios Fanourakis
Stelios Fanourakis el 11 de Mayo de 2018
7 is an optimization value for value?
Image Analyst
Image Analyst el 11 de Mayo de 2018
With the lack of any information on what you're looking for or how it relates to my last comment on spatial calibration, sure, why not? If you don't like that, how about 13 or 42? Use whatever value works best for you.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with Image Processing Toolbox 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