Merge pull request #5459 from aman11dhanpat:master

This commit is contained in:
Alexander Alekhin 2015-10-06 17:12:03 +00:00
commit 706b8a6266

View File

@ -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);