why it showing ((Warning: Image is too big to fit on screen; displaying at 67% )) ?

2 views (last 30 days)
>> v2
Warning: Image is too big to fit on screen; displaying at 67%
> In images.internal.initSize (line 71)
In imshow (line 332)
In v2 (line 15)

Answers (1)

Ameer Hamza
Ameer Hamza on 19 Oct 2020
This means that your image has more pixels, then your screen can fit. This is not an error, just a warning. You can suppress it from appearing on screen by running the following command.
warning('off', 'images:initSize:adjustingMag')

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!