hI want to know that I load multiple images into a single UIAxes of the app designer and click the previous and next buttons to check the image

조회 수: 5 (최근 30일)
I want to know that I load multiple images into a single UIAxes of the app designer and click the previous and next buttons to check the image
  댓글 수: 3
승곤 유
승곤 유 2022년 5월 6일
direcName=app.filepathEditField.Value;
direc = direcName;
filename = dir(fullfile(direc,'*.jpg'));
temp=(imread(fullfile(direc,filename(1).name)));
[m n c]= size(temp);
A = zeros(m,n,length(filename),c);
A = uint8(A);
for i=1:length(filename)
A(:,:,i,:) = (imread(fullfile(direc,filename(i).name)));
i/length(filename)
end
imshow3D(A)

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

답변 (1개)

Shanmukha Voggu
Shanmukha Voggu 2022년 5월 12일
Hi,
Please refer to the following MATLAB Answer:
This might be able to resolve your issue!

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by