I am looking to from MATLAB from Python. I need to use the MATLAB Image Acquisition Toolbox to acquire few images from a video camera.
MATLAB seems to be a nice solu
[img] = get_image(some_parameter), you could write something like this:matlab = matlab_wrapper.MatlabSession()
img = matlab.workspace.get_image(some_parameter)
Disclaimer: I'm the author of matlab_wrapper