How to convert from an exposure value to lux? Thanks!

i.e. what's the formula behind this chart?

link|improve this question

Which programming language do you want to achieve this ? – w00t Mar 23 '11 at 12:53
c-like langage is fine. or just the pointer to the mathematics involved will be appreciated. – ohho Mar 24 '11 at 2:25
photo.stackexchange.com – Throwback1986 Mar 24 '11 at 2:58
feedback

1 Answer

up vote 2 down vote accepted

Forget the math on Wikipedia. By inspecting the table to which you linked, it's easy to see the pattern:

EV      Lux
-1      1.25
-0.5    1.75
0       2.50
0.5     3.50
1       5.00
1.5     7.00
2       10.00
2.5     14.00
3       20.00
3.5     28.00
4       40.00
...

1 EV is 5 Lux. 2 EV is 10 Lux. 3 EV is 20 Lux. Hmmm. It looks logarithmic:

lux = (2 ^ ev) * 2.5;

(2 to the power of EV, times 2.5)

C-like:

#include <math.h>

double evToLux(double ev) {
    return pow(2, ev) * 2.5;
}

Of course, this is entirely based on that table. Maybe what they have is an estimation, or maybe this is really the actual formula.

Update

Oh, I checked Wikipedia just in case and the answer was right there: enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.