Displaying images from cell arrays in app designer

조회 수: 3 (최근 30일)
Pranaya Kansakar
Pranaya Kansakar 2020년 5월 22일
답변: Cris LaPierre 2020년 12월 20일
I have a cell array whose cells contains images and I am trying to individually display the images in app designer.
I have tried the following code in app designer:
cellarray = uigetfile('*.*;');
Z = {cellarray,1};
c = imread(Z);
imshow(c,'Parent',app.UIAxes)
Here, I save a cell array as a .mat file which I try to open in an app.
However, it says that brace indexing is not supported.
I'm confused as the indexing in line 2 of the code above would work in the baseline MATLAB workspace but it doesn't seem to work in app designer?
Thanks for your help.

답변 (1개)

Cris LaPierre
Cris LaPierre 2020년 12월 20일
It looks like you are indexing your cell array incorrectly. See this page: Access Data in Cell Array.
Try something like this (untested)
cellarray = uigetfile('*.*');
Z = cellarray{1};
c = imread(Z);
imshow(c,'Parent',app.UIAxes)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by