Get voxel coordination by using imwarp

조회 수: 1 (최근 30일)
AniCnx
AniCnx 2021년 11월 15일
댓글: AniCnx 2024년 8월 13일
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.

채택된 답변

Himanshu
Himanshu 2024년 8월 9일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by