ROI Box via Zivid Studio

Zivid Studio allows you to easily create a ROI box and export the capture settings with the chosen ROI parameters. Check out the video below for a quick guide on how to configure the ROI box in Zivid Studio, demonstrated by filtering the contents of a bin.

Note

When using the point picker you cannot select a pixel that is a NaN in the point cloud. You can therefore only select pixels that correspond to actual points in the point cloud.

Once you have created the ROI box in Zivid Studio you can export the settings YAML and load it back into your application.

Go to source

source

const auto settingsFile = "Settings.yml";
std::cout << "Loading settings from file: " << settingsFile << std::endl;
const auto settingsFromFile = Zivid::Settings(settingsFile);
Go to source

source

var settingsFile = "Settings.yml";
Console.WriteLine("Loading settings from file: " + settingsFile);
var settingsFromFile = new Zivid.NET.Settings(settingsFile);
Go to source

source

settings_file = "Settings.yml"
print(f"Loading settings from file: {settings_file}")
settings_from_file = zivid.Settings.load(settings_file)

Version History

SDK

Changes

2.12.0

ROI box reduces capture time.

2.9.0

ROI API is added.