Get voxel coordination by using imwarp

1 visualización (últimos 30 días)
AniCnx
AniCnx el 15 de Nov. de 2021
Comentada: AniCnx el 13 de Ag. de 2024
How can I get the coordination of the voxel by using the imwarp function?
I have image volume and applied by the imwarp. The result was return only the image volume but I would like to get the coordination of each voxel.

Respuesta aceptada

Himanshu
Himanshu el 9 de Ag. de 2024
Hi,
I see that you are trying to obtain voxel coordinates after applying the "imwarp" function to an image volume.
The "imwarp" function transforms an image volume but does not directly provide the voxel coordinates. You can achieve this by following these steps:
  • Create a grid of coordinates for the original image volume using "ndgrid".
  • Apply the same geometric transformation to these coordinates using the "transformPointsForward" method.
  • Use the transformed coordinates to map the voxel locations.
Please refer to the below documentations for more information.
  1. Apply geometric transformation to image: https://www.mathworks.com/help/images/ref/imwarp.html
  2. 3-D affine geometric transformation: https://www.mathworks.com/help/images/ref/affinetform3d.html
  3. Apply forward geometric transformation: https://www.mathworks.com/help/images/ref/affinetform2d.transformpointsforward.html
  4. Rectangular grid in N-D space: https://www.mathworks.com/help/matlab/ref/ndgrid.html
I hope this helps.

Más respuestas (0)

Categorías

Más información sobre 3-D Volumetric Image Processing 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