MATLAB: Size error for the own image in “Automatically Detect and Recognize Text in Natural Images” code

computer vision system toolboxComputer Vision Toolboxtext detectiontext extraction

Hi i tried the following example for Automatically Detect and Recognize Text in Natural Images http://www.mathworks.com/help/vision/examples/automatically-detect-and-recognize-text-in-natural-images.html But I am getting this error when i use my own images. Could you please help me?
Warning: Image is too big to fit on screen; displaying at 50% In images.internal.initSize (line 71) In imshow (line 305)
In OCRExample (line 2)
Warning: Image is too big to fit on screen; displaying at 50%







> In images.internal.initSize (line 71)
In imshow (line 305)
In OCRExample (line 9)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In imshowpair (line 124)
In OCRExample (line 22)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In OCRExample (line 27)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In imshowpair (line 124)
In OCRExample (line 32)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In imshowpair (line 124)
In OCRExample (line 45)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In OCRExample (line 51)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In imshowpair (line 124)
In OCRExample (line 66)
Warning: Image is too big to fit on screen; displaying at 50%
> In images.internal.initSize (line 71)
In imshow (line 305)
In OCRExample (line 77)

Best Answer

You can also silence this warning when you don't care to know that your images are being displayed at a lower resolution:
warning('off', 'images:initSize:adjustingMag')