ProcUnit::ImageDataFree

Removes image data space

int ImageDataFree(
   int  imageNo
);

Parameters
imageNo
Image number within the processing unit to be deleted

Return Value
Returns 0 when the image data is successfully deleted.
Otherwise returns a non-zero value.

Description
Deletes the image data space of the in-unit image number which is specified by the argument.

Example
   int Sample::MeasureEnd(ProcUnit *ptrProcUnit)
    {

        // Delete the data space of image data 0

        ptrProcUnit->ImageDataFree(0);
    }