[Resolved] 5 Stars Calibration

Forum to report issues and bugs on Windows 7, 8, and 10.

[Resolved] 5 Stars Calibration

Postby ChristopheG » 10 Sep 2014, 22:03

Hi,

I was wondering if anyone was able to get a 5 stars calibration.
The best I was able to achieve is 4 stars.

Thanks

Christophe.
ChristopheG
 
Posts: 2
Joined: 05 Sep 2014, 11:43

Re: 5 Stars Calibration

Postby greg » 11 Sep 2014, 18:13

Sometimes I get 5, some days 4. Maybe to do with the room lighting at different times? I don't have any real knowledge of the difference.
greg
 
Posts: 19
Joined: 19 Mar 2014, 21:05

Re: 5 Stars Calibration

Postby sourabhbans0007 » 18 Sep 2014, 15:48

yes i get 5 stars daily.... m working on that.
sourabhbans0007
 
Posts: 11
Joined: 11 Aug 2014, 12:18

Re: 5 Stars Calibration

Postby Martin » 18 Sep 2014, 23:52

There will always be some difference between individuals and the accuracy of a calibration. However, the rating function is an approximation that doesn't tell the full story. It's possible that a four star is fairly close to a five since the cut off is a hard limit. The rating is done like this (values are in degrees of visual angle):

Code: Select all
            if (accuracy < 0.5) // perfect
                return 5;

            if (accuracy < 0.7) // moderate etc.
                return 4;

            if (accuracy < 1)
                return 3;

            if (accuracy < 1.5)
                return 2;
 
            return 1; // redo
 


So a 0.51 calibration would yield 4 stars but it's a still a good result ;)

Try to check the accuracy with the mouse-redirect, is it constantly of any specific area of the screen?

The primary factors affecting the result is screen size and distance from the device (other than individual differences in pupil size, eye shape etc).
Martin
 
Posts: 567
Joined: 29 Oct 2013, 15:20


Return to Issues and troubleshooting - Windows



cron