Adding Text
Learn how to add text to an image.
We'll cover the following...
Let’s suppose we want to add the name of a company to a large number of images. We can use the OpenCV library to easily do that.
Adding text to an image
To add text, we’ll use the putText()
function of the OpenCV library. We ...