In Python, I have an array comes from Matlab function using Matlab engine.
import matlab.engine
import numpy as N
eng = matlab.engine.start_matlab()
a= eng.func()
print(type(a))
print(N.shape(a))
the console output is :
<class 'matlab.mlarray.double'>
(135L, 134L, 7L)
in which there is 7 gray images with size of 135x134. how can I extract each image and show them by loop?