You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ZEDCamera/Assets/ZED/SDK/NativeInterface/ZEDCamera.cs
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2380,10 +2380,13 @@ public static sl.StreamingProperties[] GetStreamingDeviceList(out int nbDevices)
2380
2380
2381
2381
/// <summary>
2382
2382
/// Performs an hardware reset of the ZED 2/ZED 2i.
2383
+
/// This method only works for ZED 2, ZED 2i, and newer camera models.
2384
+
/// This method will invalidate any sl.Camera object, since the device is rebooting.
2385
+
/// Under Windows it is not possible to get exclusive access to HID devices, hence calling this method while the camera is opened by another process will cause it to freeze for a few seconds while the device is rebooting.
2383
2386
/// </summary>
2384
-
/// <param name="serialNumber">Serial number of the camera</param>
2385
-
/// <param name="fullReboot">Perform a full reboot (Sensors and Video modules)</param>
2386
-
/// <returns>ZED SDK version as a string in the format MAJOR.MINOR.PATCH.</returns>
2387
+
/// <param name="serialNumber">Serial number of the camera to reset, or 0 to reset the first camera detected.</param>
2388
+
/// <param name="fullReboot">Perform a full reboot (sensors and video modules) if true, otherwise only the video module will be rebooted.</param>
2389
+
/// <returns>sl.ERROR_CODE.SUCCESS if everything went fine. sl.ERROR_CODE.CAMERA_NOT_DETECTED if no camera was detected. sl.ERROR_CODE.FAILURE otherwise.</returns>
0 commit comments