Skip to content

Commit e28af0b

Browse files
committed
Merge branch 'master' of https://github.com/stereolabs/zed-unity
2 parents 5aa0ebd + 5737dff commit e28af0b

File tree

25 files changed

+514
-843
lines changed

25 files changed

+514
-843
lines changed

ZEDCamera/Assets/SDK/Helpers/Resources/Materials/PointCloud/Mat_ZED_PointCloud.mat

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Material:
99
m_PrefabAsset: {fileID: 0}
1010
m_Name: Mat_ZED_PointCloud
1111
m_Shader: {fileID: 4800000, guid: e559735f38c1ab04bb202a47093cfd4f, type: 3}
12+
m_Parent: {fileID: 0}
13+
m_ModifiedSerializedProperties: 0
1214
m_ValidKeywords: []
1315
m_InvalidKeywords:
1416
- _EMISSION
@@ -18,6 +20,7 @@ Material:
1820
m_CustomRenderQueue: -1
1921
stringTagMap: {}
2022
disabledShaderPasses: []
23+
m_LockedProperties:
2124
m_SavedProperties:
2225
serializedVersion: 3
2326
m_TexEnvs:

ZEDCamera/Assets/SDK/Helpers/Scripts/Display/ZEDFusedPointCloudRenderer.cs

+26-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//======= Copyright (c) Stereolabs Corporation, All rights reserved. ===============
22

3+
using System.Threading;
34
using UnityEngine;
45

56
/// <summary>
@@ -82,22 +83,23 @@ void Start()
8283
}
8384

8485
if (zedManager != null)
86+
{
8587
zed = zedManager.zedCamera;
8688

87-
if (_pointMaterial == null)
88-
{
89-
_pointMaterial = new Material(Resources.Load("Materials/PointCloud/Mat_ZED_FusedPC_Point") as Material);
90-
}
89+
if (_pointMaterial == null)
90+
{
91+
_pointMaterial = new Material(Resources.Load("Materials/PointCloud/Mat_ZED_FusedPC_Point") as Material);
92+
}
9193

92-
if (_diskMaterial == null)
93-
{
94-
_diskMaterial = new Material(Resources.Load("Materials/PointCloud/Mat_ZED_FusedPC_Disk") as Material);
95-
}
96-
97-
_diskMaterial.hideFlags = HideFlags.DontSave;
98-
_pointMaterial.hideFlags = HideFlags.DontSave;
99-
zedManager.OnGrab += startMap;
94+
if (_diskMaterial == null)
95+
{
96+
_diskMaterial = new Material(Resources.Load("Materials/PointCloud/Mat_ZED_FusedPC_Disk") as Material);
97+
}
10098

99+
_diskMaterial.hideFlags = HideFlags.DontSave;
100+
_pointMaterial.hideFlags = HideFlags.DontSave;
101+
zedManager.OnGrab += startMap;
102+
}
101103
}
102104

103105
/// <summary>
@@ -107,9 +109,13 @@ private void startMap()
107109
{
108110
if (zed != null && notStarted)
109111
{
110-
zed.EnableSpatialMapping(sl.SPATIAL_MAP_TYPE.FUSED_POINT_CLOUD, resolution, range);
111-
notStarted = false;
112-
canUpdate = true;
112+
sl.ERROR_CODE err = zed.EnableSpatialMapping(sl.SPATIAL_MAP_TYPE.FUSED_POINT_CLOUD, resolution, range);
113+
114+
if (err == sl.ERROR_CODE.SUCCESS)
115+
{
116+
notStarted = false;
117+
canUpdate = true;
118+
}
113119
}
114120

115121
}
@@ -139,7 +145,7 @@ void OnDestroy()
139145
/// </summary>
140146
void Update()
141147
{
142-
if (zed.IsCameraReady && canUpdate) //Don't do anything unless the ZED has been initialized.
148+
if (zed != null && zed.IsCameraReady && canUpdate) //Don't do anything unless the ZED has been initialized.
143149
{
144150
updateTime += Time.deltaTime;
145151
if (updateTime >= 1)
@@ -148,6 +154,10 @@ void Update()
148154
updateTime = 0;
149155
}
150156
}
157+
else
158+
{
159+
Thread.Sleep(1);
160+
}
151161
}
152162

153163
/// <summary>

ZEDCamera/Assets/SDK/Helpers/Scripts/ZEDManager.cs

+14-1
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,8 @@ public enum shaderType
635635

636636
private sl.ObjectDetectionRuntimeParameters objectDetectionRuntimeParameters = new sl.ObjectDetectionRuntimeParameters();
637637

638+
public sl.CustomObjectDetectionRuntimeParameters customObjectDetectionRuntimeParameters = new sl.CustomObjectDetectionRuntimeParameters();
639+
638640
[HideInInspector]
639641
public List<CustomBoxObjectData> customObjects = new List<CustomBoxObjectData>();
640642

@@ -3236,7 +3238,18 @@ private void RetrieveObjectDetectionFrame()
32363238
{
32373239
sl.Objects objsbuffer = new sl.Objects();
32383240

3239-
sl.ERROR_CODE res = zedCamera.RetrieveObjects(ref objectDetectionRuntimeParameters, ref objsbuffer, objectDetectionInstanceID);
3241+
sl.ERROR_CODE res = sl.ERROR_CODE.FAILURE;
3242+
3243+
if (objectDetectionModel == sl.OBJECT_DETECTION_MODEL.CUSTOM_BOX_OBJECTS)
3244+
{
3245+
customObjectDetectionRuntimeParameters.objectClassDetectionProperties = new List<CustomObjectDetectionProperties>();
3246+
customObjectDetectionRuntimeParameters.objectDetectionProperties = new CustomObjectDetectionProperties();
3247+
res = zedCamera.RetrieveObjects(ref customObjectDetectionRuntimeParameters, ref objsbuffer, objectDetectionInstanceID);
3248+
}
3249+
else
3250+
{
3251+
res = zedCamera.RetrieveObjects(ref objectDetectionRuntimeParameters, ref objsbuffer, objectDetectionInstanceID);
3252+
}
32403253

32413254
if (res == sl.ERROR_CODE.SUCCESS && objsbuffer.isNew != 0)
32423255
{

ZEDCamera/Assets/SDK/NativeInterface/ZEDCamera.cs

+166-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public int TagInvisibleToZED
285285
/// <summary>
286286
/// Current Plugin Version.
287287
/// </summary>
288-
public static readonly System.Version PluginVersion = new System.Version(4, 1, 0);
288+
public static readonly System.Version PluginVersion = new System.Version(4, 2, 0);
289289

290290
/******** DLL members ***********/
291291
[DllImport(nameDll, EntryPoint = "GetRenderEventFunc")]
@@ -735,6 +735,9 @@ private static extern int dllz_enable_tracking(int cameraID, ref Quaternion quat
735735
[DllImport(nameDll, EntryPoint = "sl_retrieve_objects")]
736736
private static extern int dllz_retrieve_objects_data(int cameraID, ref ObjectDetectionRuntimeParameters od_params, ref Objects objs, uint instanceID);
737737

738+
[DllImport(nameDll, EntryPoint = "sl_retrieve_custom_objects")]
739+
private static extern int dllz_retrieve_custom_objects(int cameraID, ref dll_customObjectDetectionRuntimeParameters od_params, ref Objects objs, uint instanceID);
740+
738741
[DllImport(nameDll, EntryPoint = "sl_enable_body_tracking")]
739742
private static extern int dllz_enable_body_tracking(int cameraID, ref BodyTrackingParameters bt_params);
740743

@@ -2436,6 +2439,22 @@ public float GetDepthValue(Vector3 pixel)
24362439
return d;
24372440
}
24382441

2442+
/// <summary>
2443+
/// Gets the current depth value of a pixel in the UNITS specified when the camera was started with Init().
2444+
/// <param name="position">The pixel's coordinates of the ZED Image as a Vector2.
2445+
/// <returns>Depth value as a float.</returns>
2446+
/// </summary>
2447+
public float GetDepthValue(Vector2 pixel)
2448+
{
2449+
if (!cameraReady)
2450+
{
2451+
return -1;
2452+
}
2453+
2454+
float d = dllz_get_depth_value(CameraID, (uint)pixel.x, (uint)pixel.y);
2455+
return d;
2456+
}
2457+
24392458
/// <summary>
24402459
/// Gets the current Euclidean distance (sqrt(x²+y²+z²)) of the targeted pixel of the screen to the camera.
24412460
/// May result in errors if the ZED image does not fill the whole screen.
@@ -3104,13 +3123,157 @@ public sl.ERROR_CODE IngestCustomBoxObjects(List<CustomBoxObjectData> objects_in
31043123
/// Retrieve object detection data
31053124
/// </summary>
31063125
/// <param name="od_params"> Object detection runtime parameters</param>
3107-
/// <param name="objFrame"> ObjectsFrameSDK that contains all the detection data</param>
3126+
/// <param name="objFrame"> Objects that contains all the detection data</param>
3127+
/// <param name="instanceID"> Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time. </param>
31083128
/// <returns></returns>
31093129
public sl.ERROR_CODE RetrieveObjects(ref ObjectDetectionRuntimeParameters od_params, ref Objects objFrame, uint instanceID = 0)
31103130
{
31113131
return (sl.ERROR_CODE)dllz_retrieve_objects_data(CameraID, ref od_params, ref objFrame, instanceID);
31123132
}
31133133

3134+
[StructLayout(LayoutKind.Sequential)]
3135+
public struct dll_customObjectDetectionProperties
3136+
{
3137+
/// <summary>
3138+
/// Index of the class represented by this set of properties.
3139+
/// </summary>
3140+
public int classID;
3141+
3142+
/// <summary>
3143+
/// Whether the object object is kept or not.
3144+
/// </summary>
3145+
[MarshalAs(UnmanagedType.U1)]
3146+
public bool enabled;
3147+
/// <summary>
3148+
/// Confidence threshold.
3149+
/// From 1 to 100, with 1 meaning a low threshold, more uncertain objects and 99 very few but very precise objects.
3150+
/// If the scene contains a lot of objects, increasing the confidence can slightly speed up the process, since every object instance is tracked.
3151+
/// Default: 20.f
3152+
/// </summary>
3153+
public float detectionConfidenceThreshold;
3154+
3155+
/// <summary>
3156+
/// Provide hypothesis about the object movements(degrees of freedom or DoF) to improve the object tracking.
3157+
/// - true: 2 DoF projected alongside the floor plane. Case for object standing on the ground such as person, vehicle, etc.
3158+
/// The projection implies that the objects cannot be superposed on multiple horizontal levels.
3159+
/// - false: 6 DoF (full 3D movements are allowed).
3160+
/// This parameter cannot be changed for a given object tracking id.
3161+
/// It is advised to set it by labels to avoid issues.
3162+
/// </summary>
3163+
[MarshalAs(UnmanagedType.U1)]
3164+
public bool isGrounded;
3165+
3166+
/// <summary>
3167+
/// Provide hypothesis about the object staticity to improve the object tracking.
3168+
/// - true: the object will be assumed to never move nor being moved.
3169+
/// - false: the object will be assumed to be able to move or being moved.
3170+
/// </summary>
3171+
[MarshalAs(UnmanagedType.U1)]
3172+
public bool isStatic;
3173+
3174+
/// <summary>
3175+
/// Maximum tracking time threshold (in seconds) before dropping the tracked object when unseen for this amount of time.
3176+
/// By default, let the tracker decide internally based on the internal sub class of the tracked object.
3177+
/// Only valid for static object.
3178+
/// </summary>
3179+
public float trackingTimeout;
3180+
3181+
/// <summary>
3182+
/// Maximum tracking distance threshold (in meters) before dropping the tracked object when unseen for this amount of meters.
3183+
/// By default, do not discard tracked object based on distance.
3184+
/// Only valid for static object.
3185+
/// </summary>
3186+
public float trackingMaxDist;
3187+
3188+
/// <summary>
3189+
/// Maximum allowed width normalized to the image size.
3190+
/// Any prediction bigger than that will be filtered out.
3191+
/// Default: -1 (no filtering)
3192+
/// </summary>
3193+
public float maxBoxWidthNormalized;
3194+
3195+
/// <summary>
3196+
/// Minimum allowed width normalized to the image size.
3197+
/// Any prediction smaller than that will be filtered out.
3198+
/// Default: -1 (no filtering)
3199+
/// </summary>
3200+
public float minBoxWidthNormalized;
3201+
3202+
/// <summary>
3203+
/// Maximum allowed height normalized to the image size.
3204+
/// Any prediction bigger than that will be filtered out.
3205+
/// Default: -1 (no filtering)
3206+
/// </summary>
3207+
public float maxBoxHeightNormalized;
3208+
3209+
/// <summary>
3210+
/// Minimum allowed Height normalized to the image size.
3211+
/// Any prediction smaller than that will be filtered out.
3212+
/// Default: -1 (no filtering)
3213+
/// </summary>
3214+
public float minBoxHeightNormalized;
3215+
3216+
public dll_customObjectDetectionProperties(CustomObjectDetectionProperties customObjectDetectionProperties)
3217+
{
3218+
classID = customObjectDetectionProperties.classID;
3219+
enabled = customObjectDetectionProperties.enabled;
3220+
detectionConfidenceThreshold = customObjectDetectionProperties.detectionConfidenceThreshold;
3221+
isGrounded = customObjectDetectionProperties.isGrounded;
3222+
isStatic = customObjectDetectionProperties.isStatic;
3223+
trackingTimeout = customObjectDetectionProperties.trackingTimeout;
3224+
trackingMaxDist = customObjectDetectionProperties.trackingMaxDist;
3225+
maxBoxWidthNormalized = customObjectDetectionProperties.maxBoxWidthNormalized;
3226+
minBoxWidthNormalized = customObjectDetectionProperties.minBoxWidthNormalized;
3227+
maxBoxHeightNormalized = customObjectDetectionProperties.maxBoxHeightNormalized;
3228+
minBoxHeightNormalized = customObjectDetectionProperties.minBoxHeightNormalized;
3229+
}
3230+
};
3231+
3232+
/// <summary>
3233+
/// DLL-friendly version of CustomObjectDetectionRuntimeParameters (found in ZEDCommon.cs).
3234+
/// </summary>
3235+
[StructLayout(LayoutKind.Sequential)]
3236+
struct dll_customObjectDetectionRuntimeParameters
3237+
{
3238+
/// <summary>
3239+
/// Global object detection properties.
3240+
/// objectDetectionProperties is used as a fallback when CustomObjectDetectionRuntimeParameters.objectClassDetectionProperties is partially set.
3241+
/// </summary>
3242+
public dll_customObjectDetectionProperties objectDetectionProperties;
3243+
3244+
/// <summary>
3245+
/// Per class object detection properties.
3246+
/// </summary>
3247+
public IntPtr objectClassDetectionProperties;
3248+
3249+
/// <summary>
3250+
/// Size of the \ref objectClassDetectionProperties array.
3251+
/// </summary>
3252+
public uint numberCustomDetectionProperties;
3253+
3254+
public dll_customObjectDetectionRuntimeParameters(CustomObjectDetectionRuntimeParameters customObjectDetectionRuntimeParameters)
3255+
{
3256+
objectDetectionProperties = new dll_customObjectDetectionProperties(customObjectDetectionRuntimeParameters.objectDetectionProperties);
3257+
numberCustomDetectionProperties = (uint)customObjectDetectionRuntimeParameters.objectClassDetectionProperties.Count;
3258+
objectClassDetectionProperties = Marshal.AllocHGlobal(customObjectDetectionRuntimeParameters.objectClassDetectionProperties.Count * Marshal.SizeOf(typeof(dll_customObjectDetectionProperties)));
3259+
}
3260+
};
3261+
3262+
/// <summary>
3263+
/// Retrieve object detection data from custom object detection
3264+
/// </summary>
3265+
/// <param name="objectDetectionRuntimeParameters"> Custim object detection runtime parameters</param>
3266+
/// <param name="objFrame">Objects that contains all the detection data</param>
3267+
/// <param name="instanceID"> Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time. </param>
3268+
/// <returns></returns>
3269+
public sl.ERROR_CODE RetrieveObjects(ref CustomObjectDetectionRuntimeParameters objectDetectionRuntimeParameters, ref Objects objFrame, uint instanceID = 0)
3270+
{
3271+
dll_customObjectDetectionRuntimeParameters dll_CustomObjectDetectionRuntime = new dll_customObjectDetectionRuntimeParameters(objectDetectionRuntimeParameters);
3272+
var e = (sl.ERROR_CODE)dllz_retrieve_custom_objects(CameraID, ref dll_CustomObjectDetectionRuntime, ref objFrame, instanceID);
3273+
Marshal.FreeHGlobal(dll_CustomObjectDetectionRuntime.objectClassDetectionProperties);
3274+
return e;
3275+
}
3276+
31143277
/// <summary>
31153278
/// Update the batch trajectories and retrieve the number of batches.
31163279
/// </summary>
@@ -3209,6 +3372,7 @@ public void DisableBodyTracking(uint bodyTrackingInstanceID = 1)
32093372
/// </summary>
32103373
/// <param name="body_params"> Body Tracking runtime parameters</param>
32113374
/// <param name="bodies"> Bodies that contains all the detection data</param>
3375+
/// <param name="instanceID"> Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time. </param>
32123376
/// <returns></returns>
32133377
public sl.ERROR_CODE RetrieveBodies(ref BodyTrackingRuntimeParameters bt_params, ref Bodies bodies, uint instanceID = 0)
32143378
{

0 commit comments

Comments
 (0)