Quote:
Originally Posted by basicxman
A BinaryImage just contains a member Image pointer. So you can use binaryImage->GetImaqImage() as your source and destination argument.
|
So, if you already had an image in a BinaryImage object (after Thresholding or something) I guess you might do something like this then?
Image *imaqImage;
imaqImage = binaryImage->GetImaqImage();
imaqConvexHull(imaqImage, imaqImage, TRUE);
Your binaryImage object would then contain a convex hulled image, right?
- Bryce