필터 지우기
필터 지우기

Resizing a 3D image without using imresize3

조회 수: 10 (최근 30일)
Matlab_Student
Matlab_Student 2017년 9월 23일
편집: Matt J 2022년 7월 29일
I do not have the image processing toolbox on my MatLab 2016b so I cannot use the imresize3() function. Is there other ways to resize an image of (x,y,z) to (a,b,c)?

답변 (4개)

Matt J
Matt J 2017년 9월 23일
편집: Matt J 2022년 7월 29일
This FEX file is a generalization of imresize to any array dimension, and doesn't use any toolboxes.
However, it only handles grayscale images, and doesn't do any anti-aliasing. All new values are based purely on interpolation.

Walter Roberson
Walter Roberson 2017년 9월 23일
ifftn( fftn(YourImage), [a, b, c] )
  댓글 수: 1
Bogdan Dzyubak
Bogdan Dzyubak 2017년 12월 28일
편집: Bogdan Dzyubak 2017년 12월 28일
Transforming the image this way forward and back produces tons of ringing. There's also a warping artifact (perhaps fftshift is needed). With imresize, the forward and back transform gives a blurrier original image which is more desirable.

댓글을 달려면 로그인하십시오.


Ahmadi Anis
Ahmadi Anis 2020년 4월 8일
I have an MRI image with this size (140,192,192), so this script will insert my image in the center of an output matrix with this size (X,Y,Z) by adding zero
this script works ;)
clear;
clc;
matrice= niftiread('C:\Users\anis8\Desktop\1.nii');
X=256;
Y=256;
Z=256;
matrice=[zeros(floor(X-size(matrice,1))/2,size(matrice,2),size(matrice,3));...
matrice;...
zeros(floor(X-size(matrice,1))/2,size(matrice,2),size(matrice,3))];%%reglage de x
matrice=[zeros(X,floor(Y-size(matrice,2))/2,size(matrice,3)),...
matrice...
,zeros(X,floor(Y-size(matrice,2))/2,size(matrice,3))];%%reglage de y
matrice=cat(3,zeros(X,Y,floor(Z-size(matrice,3))/2),...
matrice...
,zeros(X,Y,floor(Z-size(matrice,3))/2));%%reglage de z
  댓글 수: 1
Radhika Gupta
Radhika Gupta 2022년 4월 24일
편집: Radhika Gupta 2022년 4월 24일
Hey!
is there any way to resize .nii file and save in same format istead of a matrix?

댓글을 달려면 로그인하십시오.


Shivam
Shivam 2022년 7월 29일
You can use "for" loop for each 2D image, and than use imresize():
Im=zeros(N,N,N);
I=zeros(n,n,n);
for i=1:N
I(:,:,i)=imresize(squeeze(Im(:,:,i)),[n n]);
end;

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by