Default Settings
The table below shows the default settings for different Zivid camera models.
Settings |
Range |
Zivid Two |
Zivid One+ S |
Zivid One+ M |
Zivid One+ L |
|
Phase |
Phase |
Phase |
Phase |
|||
Exposure Time (us) |
1677 - 100000 3 |
5000 |
6500 |
6500 |
6500 |
|
Aperture (f-number) |
32.0 - 1.40 4 |
2.38 |
5.66 |
5.66 |
5.66 |
|
1.0 - 16.0 |
1.0 |
1.0 |
1.0 |
1.0 |
||
0 - 1.8 5 |
1.8 |
1.0 |
1.5 |
1.8 |
||
Noise Enabled |
Yes |
Yes |
Yes |
Yes |
||
Noise Threshold |
0 - 100 |
5 |
7 |
7 |
7 |
|
Outlier Enabled |
Yes |
Yes |
Yes |
Yes |
||
Outlier Threshold |
0 - 100 |
10 |
5 |
5 |
25 |
|
Reflection |
Yes |
No |
No |
No |
||
Contrast Distortion 1 Correction Enabled |
Yes |
No |
No |
No |
||
Contrast Distortion 1 Correction Strength |
0 - 1.0 |
0.3 |
0.4 |
0.4 |
0.4 |
|
Contrast Distortion 1 Removal Enabled |
No |
No |
No |
No |
||
Contrast Distortion 1 Removal Threshold |
0 - 1.0 |
0.2 |
0.5 |
0.5 |
0.5 |
|
Gaussian Enabled |
Yes |
No |
No |
No |
||
Gaussian Sigma |
0.5 - 5.0 |
1.0 |
1.5 |
1.5 |
1.5 |
|
Red Balance |
1.0 - 8.0 |
1.0 |
1.0 |
1.0 |
1.0 |
|
Green Balance |
1.0 - 8.0 |
1.0 |
1.0 |
1.0 |
1.0 |
|
Blue Balance |
1.0 - 8.0 |
1.0 |
1.0 |
1.0 |
1.0 |
|
Gamma |
0.25 - 1.5 |
1.0 |
1.0 |
1.0 |
1.0 |
|
Tone Mapping 1 |
HDR Only / Always |
HDR Only |
HDR Only |
HDR Only |
HDR Only |
It is possible to read various settings info from the SDK.
Default camera settings:
const auto cameraInfo = camera.info();
auto defaultSettings = Zivid::Experimental::SettingsInfo::defaultValue<Zivid::Settings>(cameraInfo);
defaultSettings.acquisitions().emplaceBack(
Zivid::Experimental::SettingsInfo::defaultValue<Zivid::Settings::Acquisition>(cameraInfo));
Default setting value:
const auto cameraInfo = camera.info();
const auto defaultSettingValue =
Zivid::Experimental::SettingsInfo::defaultValue<Zivid::Settings::Acquisition::Aperture>(cameraInfo);
Valid setting range (for settings of types double and duration):
const auto cameraInfo = camera.info();
const auto validSettingRange =
Zivid::Experimental::SettingsInfo::validRange<Zivid::Settings::Acquisition::Aperture>(cameraInfo);
Valid setting values (for settings of types bool and enum):
const auto cameraInfo = camera.info();
const auto validSettingValues = Zivid::Experimental::SettingsInfo::validValues<
Zivid::Settings::Processing::Filters::Reflection::Removal::Enabled>(cameraInfo);
- 1(1,2,3,4,5,6)
Experimental
- 2
Stripe Engine only implemented on Zivid One+.
- 3
Zivid Two has a minimum exposure time of 1677 us. Zivid One+ has a minimum of 6500 us.
- 4
Zivid One+ has a minimum aperture of 1.40. Zivid Two has a minimum of 1.80.
- 5
Projector brightness below 0.25 is not recommended, except for 2D captures.