필터 지우기
필터 지우기

How can I resize a mat file that contains images

조회 수: 3 (최근 30일)
Amira Youssef
Amira Youssef 2022년 9월 14일
답변: Walter Roberson 2022년 9월 14일
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