Resizing a 3D image on one axis
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
その他の回答 (1 件)
Image Analyst
2019 年 9 月 12 日
Try imresize()
bigImage = imresize(image3d, [200,200,200], 'bicubic'); % Or 'nearest' - whatever you want.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!