Quick Capture Tutorial
Introduction
This tutorial describes the most basic way to use the Zivid SDK to capture point clouds.
Prerequisites
- Install Zivid Software. 
- For Python: install zivid-python 
Initialize
Calling any of the APIs in the Zivid SDK requires initializing the Zivid application and keeping it alive while the program runs.
Connect
Configure
Capture
Save
For other exporting options, see Point Cloud for a list of supported formats
Utilize
const auto pointCloud = frame.pointCloud();
const auto data = pointCloud.copyData<Zivid::PointXYZColorRGBA_SRGB>();
Tip
- You can export Preset settings to YML from Zivid Studio 
- You can open and view - Frame.zdffile in Zivid Studio.
Conclusion
This tutorial shows the most basic way to use the Zivid SDK to connect to, capture, and save from the Zivid camera.
For a more in-depth tutorial check out the complete Capture Tutorial.