How can i get the images from emnist .mat file using matlab?

 Accepted Answer

For example,
L=load('emnist-letters.mat');
z=reshape( L.dataset.test.images.' ,28,28,[]);
imshow(z(:,:,100))

More Answers (0)

Categories

Asked:

Anu
on 20 Jul 2018

Answered:

on 20 Jul 2018

Community Treasure Hunt

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

Start Hunting!