MATLAB: Acquiring live video feed using openmv camera

Image Acquisition Toolboximage processingMATLABvideo processing

I am using openmv camera https://openmv.io/ to capture the video, I want to stream it in MATLAB. Can someone guide me through the process required for doing this?
MATLAB image acquisition toolbox doesnt seem to support openmv camera.
Thanks ain advance

Best Answer

Because there is no direct connection from the computer to the camera, communication must be done through the microcontroller itself.
If it is possible to stream the image data from the OpenMV to the computer, you may be able to read the images into MATLAB with the Instrument Control Toolbox, depending on the communication interface (see the documentation Instrument Based Communication). Consider using commands such as "fread" to read a fixed-size binary image through the connection.