Resizing a 3D image on one axis
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Matthew Lee
le 9 Sep 2019
Réponse apportée : Image Analyst
le 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 commentaires
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 12 Sep 2019
Try imresize()
bigImage = imresize(image3d, [200,200,200], 'bicubic'); % Or 'nearest' - whatever you want.
0 commentaires
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!