I have a grayscale image in OpenCV represented by:
cv::Mat img_grayscale;
It has one channel (0-255). I want to convert it into an RGB image where for each pixel, R=G=B=(0-255).
For the record: I am NOT trying to convert it to color; but, I want to be able to overlay it with colored text/images. So I need a grayscale image with RGB channels.