Toolbar

The toolbar is located at the top of the Zivid Studio GUI. It consists of drop-down menus to handle files, control the GUI, and get information about the Zivid Software.


Save and Open

Zivid Studio offers various saving options for point clouds, color images, and settings to disk.

Save/Export Point Cloud

To save the point cloud in file ZDF format:

Note

.zdf is the native Zivid file format that includes point cloud, color image, and depth image data.

  • Click on FileSave

  • Navigate to the location where you want to save the point cloud

  • Write down the file name

  • Click Save

Note

ZDF is the preferred file format for the Zivid Customer Success Team.

To export to one of our supported point cloud formats, unordered or ordered Polygon (PLY), ASCII (XYZ), or Point Cloud Data (PCD) [1] file format:

  • Click on FileExport

  • Navigate to the location where you want to save the point cloud

  • Write down the file name

  • Click Save

Open Point Cloud

Opening a point cloud in Zivid Studio is only supported for ZDF file format:

  • Click on FileOpen

  • Navigate to the location of your ZDF file

  • Click Open

Tip

Drag and drop a ZDF file to load the point cloud to Zivid Studio - added in Zivid SDK 2.5.

Save Color Image

You can also save the 2D color image in one of our supported image formats, PNG, BMP and JPG. For all formats, you can choose between sRGB and linear RGB color space.

  • Click on FileSave Color Image

  • Navigate to the location where you want to save the color image

  • Write down the file name

  • Select image format type and color space

  • Click Save

Save Depth Map

You can also save the colored depth map in PNG format.

  • Click on FileSave Depth Map

  • Navigate to the location where you want to save the depth map

  • Write down the file name

  • Click Save

Export Settings

It is possible to save all settings to disk.

  • Click on FileExport Capture Settings

  • Navigate to the location where you want to save the settings

  • Write down the file name

  • Click Save

../../_images/import-capture-settings.png

Import Settings

To import the settings in Zivid Studio:

  • Click on FileImport Capture Settings

  • Navigate to the location of your settings file

  • Click Open

Tip

Drag and drop a YML file to import the settings to Zivid Studio - added in Zivid SDK 2.5.

Settings can be loaded using the Zivid SDK as well.

Go to source

source

std::cout << "Loading settings from file" << std::endl;
const auto settingsFile =
    std::string(ZIVID_SAMPLE_DATA_DIR) + "/Settings/" + settingsFolder(camera) + "/Settings01.yml";
const auto settings = Zivid::Settings(settingsFile);
Go to source

source

Console.WriteLine("Loading settings from file");
var settingsFile = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData)
                   + "/Zivid/Settings/" + SettingsFolder(camera) + "/Settings01.yml";
var settings = new Zivid.NET.Settings(settingsFile);
Go to source

source

print("Loading settings from file")
settings_file = Path(user_options.settings_path)
settings = zivid.Settings.load(settings_file)

Tools

Infield Correction

To open the Infield Correction tool:

  • Click on ToolsInfield Correction

../../_images/infield-in-studio.png

Infield Correction functionality overview

  • Last correction shows the last date and time an infield correction was written to the camera.

  • Capture & Measure captures to determine the local dimension trueness error of the point cloud where the Zivid calibration board is placed.

  • Current Camera Metrics shows the local dimension trueness error for the last capture taken with Capture & Measure, as well as the average and the maximum for all the captures.

  • Current trueness shows the local dimension trueness error for the last capture taken with Capture & Measure.

  • Average trueness shows the average of the local dimension trueness errors for all the captures taken with Capture & Measure so far.

  • Maximum trueness shows the maximum of the local dimension trueness errors for all the captures taken with Capture & Measure so far.

  • Expected Post-Correction Metrics shows the estimated post-correction error within 1σ statistical uncertainty over the working distances the images were captured at.

  • Save Correction to Camera writes to the camera the parameters for improving the accuracy of the point cloud determined from the captures of the Zivid calibration board taken with Capture & Measure.

  • Reset Camera Correction removes any infield correction that has been applied in previous correct instances. It is not required to do a reset before doing a new infield correction.

Learn more about Infield Correction.

Version History

SDK

Changes

2.12.0

Save depth map is added.