How can I resize a mat file that contains images

3 次查看(过去 30 天)
I have this code
https://www.mathworks.com/matlabcentral/fileexchange/71521-3-d-deep-learning-lung-tumor-segmentation
and my data is 40x40x40
I need it to be 64x64x64 for the code to work is that possible

回答(2 个)

Chunru
Chunru 2022-9-14
V =rand(40, 40, 40);
q = (0:59)/59*39+1;
qqq = meshgrid(q, q, q);
% 3d interpolation
V1 = interp3(V, qqq, qqq, qqq);
whos
Name Size Bytes Class Attributes V 40x40x40 512000 double V1 60x60x60 1728000 double cmdout 1x33 66 char q 1x60 480 double qqq 60x60x60 1728000 double

Walter Roberson
Walter Roberson 2022-9-14
imresize3() for r2017b or later.

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by