I wanna write on images using EmguCV in Windows Form C# In actual I wanna create a simple app for images as an image editor. Its simple purpose is to open images through an open file dialogue I can open the file but now I can't get any help or resource on How to write on images?. Let me explain my question through some image examples:
Image Before Editing:
Image after Editing:
So how can I do this using EmguCV in C# I am newbie in dealing with images if there any way so kindly tell me. And If there is not a such function involved in writing on images using EmguCV then please tell the alternative if any of you know??
Thanks in advance.
You can write on images with
CvInvoke.PutText
, one simple example is here:Seems confusing for somebody new to EmguCV but it really is just a matter of looking at what each parameters do, more info in the EmguCV official documentation.