|
Re: Vision Tracking imaqMorphology exception
The ImaqMorphology function's first two parameters are pointers to Image objects. The first Image is the destination image, and the second is the source image. The function morphs the second image and puts the changed image for the first parameter. I think the problem we have is that we do not actually pass in the object itself, and instead, passes in a temporary object. We have tried creating Image objects so that we pass in the object itself, but when we tried to define an Image object, it gives an error saying that it's an incomplete type.
|