Tutorial - Hello ZED This tutorial simply shows how to configure and open the ZED, print its serial number and close the camera. This is the most basic tutorial and a good start for using the ZED SDK. Getting Started First, download the latest version of the ZED SDK. Download the Hello ZED sample code in C++, Python or C#. Follow the instructions on how to build your project in C++ or run in Python on Windows and Linux. Code Overview The ZED API provides low-level access to camera control and configuration. To use the ZED in your application, you will need to create and open a Camera object. The API can be used with two different video inputs: the ZED live video (Live mode) or video files recorded in SVO format with the ZED API (Playback mode). Camera configuration To configure the camera, create a Camera object and specify your InitParameters. Initial parameters let you adjust camera resolution, FPS, depth sensing parameters and more. These parameters can only be set before opening the camera and cannot be changed while the camera is in use. C++ Python C# // Create a ZED camera object Camera zed; // Set configuration parameters InitParameters init_params; init_params.camera_resolution = RESOLUTION::HD1080 ; init_params.camera_fps = 30 ; # Create a ZED camera object zed = sl.Camera() # Set configuration parameters init_params = sl.InitParameters() init_params.camera_resolution = sl.RESOLUTION.HD1080 init_params.camera_fps = 30 // Create a ZED camera object Camera zed = new Camera(0); // Set configuration parameters InitParameters init_params = new InitParameters(); init_params.resolution = RESOLUTION.HD1080; init_params.cameraFPS = 30 ; InitParameters contains a configuration by default. You can set the following initial parameters: Camera configuration parameters, using the camera_* entries (resolution, image flip…). SDK configuration parameters, using the sdk_* entries (verbosity, GPU device used…). Depth configuration parameters, using the depth_* entries (depth mode, minimum distance…). Coordinate frames configuration parameters, using the coordinate_* entries (coordinate system, coordinate units…). SVO parameters to use Stereolabs video files with the ZED SDK (filename, real-time mode…) To get the list of available parameters, see API documentation. Open the camera Once initial configuration is done, open the camera. C++ Python C# // Open the camera err = zed.open(init_params); if (err != ERROR_CODE::SUCCESS) exit(-1); # Open the camera err = zed.open(init_params) if err != sl.ERROR_CODE.SUCCESS: exit() // Open the camera err = zed.Open(ref init_params); if (err != ERROR_CODE.SUCCESS) Environment.Exit(-1); Retrieve Camera Information Camera parameters such as focal length, field of view or stereo calibration can be retrieved for each eye and resolution. Those values are available in CalibrationParameters. They can be accessed using getCameraInformation(). You can also access IMU and sensor configuration using the Sensors API. In this tutorial, we simply retrieve the serial number of the camera: C++ Python C# // Get camera information (serial number) int zed_serial = zed.getCameraInformation().serial_number; printf("Hello! This is my serial number: %d\n", zed_serial); # Get camera information (serial number) zed_serial = zed.get_camera_information().serial_number print("Hello! This is my serial number: {}".format(zed_serial)) // Get camera information (serial number) int zed_serial = zed.GetZEDSerialNumber(); Console.WriteLine("Hello! This is my serial number: " + zed_serial); In the console window, you should now see the serial number of the camera (also available on a sticker on the ZED USB cable). Close the Camera To close the camera properly, use zed.close() and exit the program. C++ Python C# // Close the camera zed.close(); return 0; # Close the camera zed.close() // Close the camera zed.Close(); Next Steps Read the next tutorial to learn how to capture images from your depth camera.