Can I print a colored foreground on white background text with printext in OpenCV.
I tried with:
putText(frame, "Male", centerPrint,FONT_HERSHEY_COMPLEX_SMALL, 0.8,cvScalar(255, 0, 0), 1, CV_AA);
But it prints a blue text on transparent background.
Thank you