Borrar filtros
Borrar filtros

Displaying images from cell arrays in app designer

3 visualizaciones (últimos 30 días)
Pranaya Kansakar
Pranaya Kansakar el 22 de Mayo de 2020
Respondida: Cris LaPierre el 20 de Dic. de 2020
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.

Respuestas (1)

Cris LaPierre
Cris LaPierre el 20 de Dic. de 2020
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)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by