Default Settings

The table below shows the default settings for different Zivid camera models.

Settings

Range

Zivid Two M70

Zivid Two L100

Zivid One+ S

Zivid One+ M

Zivid One+ L

Vision Engine

Phase / Stripe [1]

Phase

Phase

Phase

Phase

Phase

Exposure

Exposure Time (us)

1677 - 100000 [2]

5000

5000

6500

6500

6500

Aperture (f-number)

32.0 - 1.40 [3]

2.38

2.38

5.66

5.66

5.66

Gain

1.0 - 16.0

1.0

1.0

1.0

1.0

1.0

Projector Brightness

0 - 1.8 [4]

1.8

1.8

1.0

1.5

1.8

ROI

Box Enabled

No

No

No

No

No

Box Point O

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

Box Point A

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

Box Point B

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

[0, 0, 0]

Extents

{-10, 100}

{-10, 100}

{-10, 100}

{-10, 100}

{-10, 100}

Depth Enabled

No

No

No

No

No

Depth Range

{300, 1300}

{600, 1600}

{300, 1000}

{500, 2000}

{1200, 3000}

Correction Filters

Noise Enabled

Yes

Yes

Yes

Yes

Yes

Noise Threshold

0 - 100

5

5

7

7

7

Outlier Enabled

Yes

Yes

Yes

Yes

Yes

Outlier Threshold

0 - 100

10

10

5

5

25

Reflection

Yes

Yes

No

No

No

[1] Contrast Distortion Correction Enabled

Yes

Yes

No

No

No

[1] Contrast Distortion Correction Strength

0 - 1.0

0.3

0.3

0.4

0.4

0.4

Removal Filters

[1] Contrast Distortion Removal Enabled

No

No

No

No

No

[1] Contrast Distortion Removal Threshold

0 - 1.0

0.2

0.2

0.5

0.5

0.5

Gaussian Enabled

Yes

Yes

No

No

No

Gaussian Sigma

0.5 - 5.0

1.0

1.0

1.5

1.5

1.5

Hole Filling Enabled

No

No

No

No

No

Hole Filling Hole Size

0.01 - 1.0

0.2

0.2

0.2

0.2

0.2

Hole Filling Strictness

1 - 4

2

2

2

2

2

Color

Red Balance

1.0 - 8.0

1.0

1.0

1.0

1.0

1.0

Green Balance

1.0 - 8.0

1.0

1.0

1.0

1.0

1.0

Blue Balance

1.0 - 8.0

1.0

1.0

1.0

1.0

1.0

Gamma

0.25 - 1.5

1.0

1.0

1.0

1.0

1.0

Mode [1]

Automatic / UseFirstAcquisition / ToneMapping

Automatic

Automatic

Automatic

Automatic

Automatic

Settings Info

It is possible to read various settings info from the SDK.

Default camera settings:

Go to source

source

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:

Go to source

source

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):

Go to source

source

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):

Go to source

source

const auto cameraInfo = camera.info();
const auto validSettingValues = Zivid::Experimental::SettingsInfo::validValues<
    Zivid::Settings::Processing::Filters::Reflection::Removal::Enabled>(cameraInfo);