Quote:
Originally Posted by Tommy.Brown
If you are working with pointers, you should just be able to delete the images out of memory each time through the loop once you are done processing them.
Image *genericImage = NULL;
//Code to get value and store it in genericImage
delete genericImage;
|
For Image objects you should use imaqDispose.