Resizing a 3D image on one axis
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Matthew Lee
il 9 Set 2019
Risposto: Image Analyst
il 12 Set 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 Commenti
Risposta accettata
Più risposte (1)
Image Analyst
il 12 Set 2019
Try imresize()
bigImage = imresize(image3d, [200,200,200], 'bicubic'); % Or 'nearest' - whatever you want.
0 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!