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

.mat fileimagesnistocr

Best Answer

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