Merge pull request #5459 from aman11dhanpat:master

pull/5462/head
Alexander Alekhin 10 years ago
commit 706b8a6266
  1. 4
      modules/imgproc/src/drawing.cpp

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

Loading…
Cancel
Save