3D Tilted projection
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Is there any Matlab script to get 2D projections of a 3D matrix after rotating the 3D matrix X degrees over it self?
Actually I need to build a simulator for the Electron Tomography Image acquisition, In which a 2D images of an object are taken every time the object is rotated over it self for X degree from -A to +A Degree, as in the Image below. http://media.wiley.com/CurrentProtocols/PS/ps1702/ps1702-fig-0009-1-full.jpg
I would very grateful for your help.
wish you a nice weekend.
Alan
0 comentarios
Respuesta aceptada
Bjorn Gustavsson
el 19 de Dic. de 2011
From the looks of your figures it seems as if you have parallel beam projection geometry. For the 2-D-to-1-D case your projections would be calculated with the Radon transform. Slightly depending on your exact geometry you might get away with a number of stacked radon transforms, all for various slices along your axis of rotation. Or you might have to make a 3-D version of radon.
HTH.
2 comentarios
Bjorn Gustavsson
el 19 de Dic. de 2011
Perhaps:
I = radon(log(f))
Then your Radon-inverse of I will give you log(f).
Más respuestas (2)
bym
el 16 de Dic. de 2011
if you have the image processing toolbox take a look at
maketform()
2 comentarios
bym
el 18 de Dic. de 2011
is your stack like a MRI in this demo? http://www.mathworks.com/products/image/demos.html?file=/products/demos/shipping/images/ipexmri.html
If it is, then I would say no, you can't slice it at an arbitrary angle
Ver también
Categorías
Más información sobre Medical Physics 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!