How can I save an Image from memory using a pointer?

3 visualizaciones (últimos 30 días)
Hello I am using DCU224M from Thorlabs.
What I have done
I have written a code in C++ using APIs to capture and save image. Using:
is_AllocImageMem (HIDS hCam,INT width, INT height, INT bitspixel,char** ppcImgMem,INT* pid) - Allocates memory
is_SetImageMem (HIDS hCam, char* pcImgMem, INT id) - Clear memory and make it available for storing
is_FreezeVideo (HIDS hCam, INT Wait) - Captures Image
is_SaveImageMem(HIDS hCam, const IS_CHAR* File); - Saves Image to a file mentioned.
What I have to do
The saving to file takes lot of time so I don't want to do that.
Is there a possible way of passing these to Matlab so that I can read image from memory directly in Matlab?
No Active-X Controls. I can't use inbuilt imaqdevice - there are other controls available via C APIs which I need(Ex: Exposure time, FPS etc,).

Respuesta aceptada

Sridutt Nayak
Sridutt Nayak el 9 de En. de 2013
Solved using Mex.
I wrote the code in .cpp, compiled using mex. Then returned the values using mxCreateDoubleMatrix.
I followed:
  1 comentario
Hurter
Hurter el 23 de En. de 2013
Hi Sridutt
Just for clarity. Is it still 2 different program running, MATLAB and your C++ program or did you compile your C++ code with mex and call that from MATLAB?
Thanks in advance

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by