Hi,
We are tying to write an image processing C++ DLL and need to know the data type of standard Labview/vision image src
To illustrate.
NIVision.DLL’s LV_Convolute fuction prototype looks like this:
void LV_Convolute(void *src, void *mask, void *dest, Array2DFloat **kernel, float divider, void *err);
If we are to write our own algorithm in a bespoke DLL we need to find out the details of what ‘void *src’ is, what the data format is and how it is constructed.
Thanks in advance.