Resizing a 3D image on one axis
2 views (last 30 days)
Show older comments
Matthew Lee
on 9 Sep 2019
Answered: Image Analyst
on 12 Sep 2019
I was wondering if there was a way of resizing a 3D image (ex. 200 * 200 * 10) by expanding the voxels in one direction (into something like 200*200*200).
0 Comments
Accepted Answer
More Answers (1)
Image Analyst
on 12 Sep 2019
Try imresize()
bigImage = imresize(image3d, [200,200,200], 'bicubic'); % Or 'nearest' - whatever you want.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!