View Single Post
Posts: 115 | Thanked: 98 times | Joined on Aug 2011
#135
Example...

According to the "Sensor.h" FCam API of N900 ...
...
virtual int maxExposure() const {return 2489140;}
...
and N9 ...
...
virtual int maxExposure() const {return 109458;}
...
It means N900 longest exposure is about 2.5 second and N9 about 0.1 second.

In the "CameraParameters.h" of the application's source code written ...
...
str.sprintf("%ds", (int)(val+0.5));
...
float right = 1.0f;
...
The code shows that we can set the exposure up to "1s". Of course we can do it on N900 because its max exposure about 2.5s. But can we do that on N9 while its max exposure about 0.1s?
 

The Following User Says Thank You to AWasisto For This Useful Post: