How can i get the images from emnist .mat file using matlab?
20 views (last 30 days)
Show older comments
0 Comments
Accepted Answer
Matt J
on 20 Jul 2018
For example,
L=load('emnist-letters.mat');
z=reshape( L.dataset.test.images.' ,28,28,[]);
imshow(z(:,:,100))
0 Comments
More Answers (0)
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!