Commit 706b8a62 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #5459 from aman11dhanpat:master

parents 559b538b dff70371
......@@ -2090,6 +2090,10 @@ void putText( InputOutputArray _img, const String& text, Point org,
int thickness, int line_type, bool bottomLeftOrigin )
{
if ( text.empty() )
{
return;
}
Mat img = _img.getMat();
const int* ascii = getFontData(fontFace);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment