09-22-2016 02:15 AM
I want to overlay just a simple plain white colour text (no color) on a grayscale image (U16).
If I use the IMAQ Overlay Text to write the text and then use IMAQ Merge Overlay, it will create a color image but for further processing i want U16 gray scale image with overlays merged?
i attached my vi which is using for above purpose.
any help will be appreciated.
thank you
Solved! Go to Solution.
09-22-2016 06:32 AM
In Overlay there are two types: Destrcutive(Changes image pixels) and Non-Destructive overlays (Doesn't change the pixel intensities).
IMAQ Merge Overlay creates a destructive overlay and the resulting image is RGB image. If you want to preserve original image without being changed, You should copy(IMAQ Copy) the original image to another buffer by creating user buffer( IMAQ create).
Just a thought, If you want the overlays merged with image and use for further processing you can Check this link if it works and do you want destructive overlays for sure?
09-22-2016 07:57 AM
Thank you very much. I am trying your suggestion to see if it applies.