The ZED SDK allows you to add depth and motion sensing to your application. Available as a standalone installer, the ZED SDK includes applications, tools and sample projects with source code.
Aug 19, 2016
The ZED SDK 1.0 release introduces positional tracking, ZEDfu
mapping application and Wide VGA video mode.
getPosition()
function provides position and orientation of the camera for every frame. Use enableTracking()
during initialization to use the Tracking API.enableAreaLearning
parameter can be set to activate camera relocalization and loop closure detection during tracking.MODE::PERFORMANCE
to new faster than real-time stereo matching algorithm.MODE::MEDIUM
with depth estimation quality and speed similar to the previous MODE:PERFORMANCE
.setCameraSettingsValue()
function.UNIT
: Desired metric units can be specified in InitParams
structure. All the provided data will be scaled according to the selected units: baseline, depth, XYZ, depthclamp, closestDephValue, tracking information... Therefore, setBaselineRatio()
has been removed.COORDINATE_SYSTEM
: Coordinate systems such as left or right-handed coordinates can now be selected in InitParams
structure. The oriented data such as (XYZ) point cloud and tracking information will be expressed in the specified coordinate system.minimumDistance
: the minimumDistance
for depth computation can now be configured manually and set above 50cm. On certain configurations, this can dramatically improve frame-rate.OCCLUSION_VALUE
: NaN
(not a number), for occlusions.TOO_FAR
: Inf
(infinity), for values above DepthClampValue
.TOO_CLOSE
: -Inf
, for values below ClosestDepthValue
.isValidMeasure()
: New macro function that returns false if the given value is one of the above, else returns true.getParameters()
: LeftCam/RightCam.hFOV/dFOV/vFOV. See StereoParameters
structure for more details.getCameraTimestamp()
function to extract the timestamp from the current SVO image. This can be used to detect frame drops during recording.Camera::init(...)
: Replaced arguments with InitParams
structure. See SDK Changes.SENSING_MODE
: RAW
and FULL
modes have been renamed to STANDARD
and FILL
. This better reflects the use of the different depth sensing modes. Old names have been removed.For older releases and changelog, see the ZED SDK release archive.