@@ -163,9 +163,9 @@ enum class ESlDepthMode : uint8
163
163
DM_None UMETA (DisplayName = " None" ),
164
164
DM_Performance UMETA(DisplayName = " Performance" ),
165
165
DM_Quality UMETA(DisplayName = " Quality" ),
166
- // DM_NeuralFast UMETA(DisplayName = "NeuralFast"),
167
166
DM_Ultra UMETA(DisplayName = " Ultra" ),
168
- DM_Neural UMETA(DisplayName = " Neural" )
167
+ DM_Neural UMETA(DisplayName = " Neural" ),
168
+ DM_NeuralPlus UMETA(DisplayName = " Neural+" )
169
169
};
170
170
171
171
/*
@@ -544,6 +544,20 @@ enum class ESlPositionalTrackingMode : uint8
544
544
PTM_Quality UMETA(DisplayName = " Quality" )
545
545
};
546
546
547
+ /*
548
+ * Lists available modules.
549
+ */
550
+ UENUM (BlueprintType, Category = " Stereolabs|Enum" )
551
+ enum class ESlModule : uint8
552
+ {
553
+ M_All UMETA (DisplayName = " All" ),
554
+ M_Depth UMETA(DisplayName = " Depth" ),
555
+ M_PositionalTracking UMETA(DisplayName = " Positional Tracking" ),
556
+ M_ObjectDetection UMETA(DisplayName = " Object Detection" ),
557
+ M_BodyTracking UMETA(DisplayName = " Body Tracking" ),
558
+ M_SpatialMapping UMETA(DisplayName = " Spatial Mapping" )
559
+ };
560
+
547
561
/* *
548
562
\brief Lists the different states of region of interest auto detection.
549
563
*/
@@ -623,13 +637,11 @@ enum class ESlAIModels : uint8
623
637
AIM_HumanBody38FastDetection UMETA(DisplayName = " Human body 38 fast Detection" ),
624
638
AIM_HumanBody38MediumDetection UMETA(DisplayName = " Human body 38 medium Detection" ),
625
639
AIM_HumanBody38AccurateDetection UMETA(DisplayName = " Human body 38 accurate Detection" ),
626
- // AIM_HumanBody70FastDetection UMETA(DisplayName = "Human body 70 fast Detection"),
627
- // AIM_HumanBody70MediumDetection UMETA(DisplayName = "Human body 70 medium Detection"),
628
- // AIM_HumanBody70AccurateDetection UMETA(DisplayName = "Human body 70 accurate Detection"),
629
640
AIM_PersonHeadFastDetection UMETA(DisplayName = " Person head fast Detection" ),
630
641
AIM_PersonHeadAccurateDetection UMETA(DisplayName = " Person head accurate Detection" ),
631
642
AIM_REIDAssociation UMETA(DisplayName = " REID Association" ),
632
643
AIM_NeuralDepth UMETA(DisplayName = " Neural Depth" ),
644
+ AIM_NeuralPlusDepth UMETA(DisplayName = " Neural Plus Depth" )
633
645
};
634
646
635
647
/*
@@ -640,8 +652,7 @@ enum class ESlBodyFormat : uint8
640
652
{
641
653
BF_BODY_18 UMETA (DisplayName = " Body 18" ),
642
654
BF_BODY_34 UMETA(DisplayName = " Body 34" ),
643
- BF_BODY_38 UMETA(DisplayName = " Body 38" ),
644
- // BF_BODY_70 UMETA(DisplayName = "Body 70")
655
+ BF_BODY_38 UMETA(DisplayName = " Body 38" )
645
656
};
646
657
647
658
/*
@@ -651,8 +662,7 @@ UENUM(BlueprintType, Category = "Stereolabs|Enum")
651
662
enum class ESlBodyKeypointsSelection : uint8
652
663
{
653
664
BKS_FULL UMETA (DisplayName = " Full" ),
654
- BKS_UPPER_BODY UMETA(DisplayName = " Upper body" ),
655
- // BKS_HAND UMETA(DisplayName = "Hand"),
665
+ BKS_UPPER_BODY UMETA(DisplayName = " Upper body" )
656
666
};
657
667
658
668
/*
@@ -1775,7 +1785,7 @@ struct STEREOLABS_API FSlRuntimeParameters
1775
1785
:
1776
1786
bEnableDepth (true ),
1777
1787
bEnableFillMode (false ),
1778
- ConfidenceThreshold (100 ),
1788
+ ConfidenceThreshold (95 ),
1779
1789
TextureConfidenceThreshold (100 ),
1780
1790
ReferenceFrame (ESlReferenceFrame::RF_World),
1781
1791
bRemoveSaturatedAreas (true )
@@ -2291,7 +2301,7 @@ struct STEREOLABS_API FSlRegionOfInterestParameters
2291
2301
:
2292
2302
depthFarThresholdMeters (2 .5f ),
2293
2303
imageHeightRatioCutoff (0 .5f ),
2294
- bAutoApply ( false )
2304
+ autoApplyModule ({ESlModule::M_All } )
2295
2305
{}
2296
2306
2297
2307
/* *
@@ -2313,7 +2323,7 @@ struct STEREOLABS_API FSlRegionOfInterestParameters
2313
2323
2314
2324
Default: Enabled
2315
2325
*/
2316
- bool bAutoApply = true ;
2326
+ TSet<ESlModule> autoApplyModule ;
2317
2327
};
2318
2328
2319
2329
/*
@@ -2927,11 +2937,6 @@ struct STEREOLABS_API FSlObjectDetectionParameters
2927
2937
GENERATED_BODY ()
2928
2938
2929
2939
const TCHAR* Section = TEXT(" ObjectDetection" );
2930
-
2931
- /* Defines if the object detection is synchronized to the image or runs in a separate thread. */
2932
- UPROPERTY (EditAnywhere, BlueprintReadWrite)
2933
- bool bImageSync;
2934
-
2935
2940
/* Defines if the object detection will track objects across images flow. */
2936
2941
UPROPERTY (EditAnywhere, BlueprintReadWrite)
2937
2942
bool bEnableTracking;
@@ -2974,7 +2979,6 @@ struct STEREOLABS_API FSlObjectDetectionParameters
2974
2979
bool bAllowReducedPrecisionInference;
2975
2980
2976
2981
FSlObjectDetectionParameters () :
2977
- bImageSync (true ),
2978
2982
bEnableTracking (true ),
2979
2983
bEnableSegmentation (false ),
2980
2984
DetectionModel (ESlObjectDetectionModel::ODM_MultiClassBoxFast),
@@ -3172,11 +3176,6 @@ struct STEREOLABS_API FSlBodyTrackingParameters
3172
3176
GENERATED_BODY ()
3173
3177
3174
3178
const TCHAR* Section = TEXT(" BodyTracking" );
3175
-
3176
- /* Defines if the object detection is synchronized to the image or runs in a separate thread. */
3177
- UPROPERTY (EditAnywhere, BlueprintReadWrite)
3178
- bool bImageSync;
3179
-
3180
3179
/* Defines if the object detection will track objects across images flow. */
3181
3180
UPROPERTY (EditAnywhere, BlueprintReadWrite)
3182
3181
bool bEnableTracking;
@@ -3222,7 +3221,6 @@ struct STEREOLABS_API FSlBodyTrackingParameters
3222
3221
bool bAllowReducedPrecisionInference;
3223
3222
3224
3223
FSlBodyTrackingParameters () :
3225
- bImageSync (true ),
3226
3224
bEnableTracking (true ),
3227
3225
bEnableSegmentation (false ),
3228
3226
DetectionModel (ESlBodyTrackingModel::BTM_HumanBodyMedium),
@@ -3424,6 +3422,40 @@ struct STEREOLABS_API FSlBodies
3424
3422
{}
3425
3423
};
3426
3424
3425
+ USTRUCT (BlueprintType, Category = " Stereolabs|Struct" )
3426
+ struct STEREOLABS_API FSlSVOData
3427
+ {
3428
+ GENERATED_BODY ()
3429
+
3430
+ // / <summary>
3431
+ // / Key used to retrieve the data stored into SVOData's content.
3432
+ // / WARNING: Length must not exceed 128.
3433
+ // / </summary>
3434
+ UPROPERTY (EditAnywhere, BlueprintReadWrite)
3435
+ FString Key = " " ;
3436
+
3437
+ // / <summary>
3438
+ // / Timestamp of the data, in nanoseconds, as a string.
3439
+ // / </summary>
3440
+ UPROPERTY (EditAnywhere, BlueprintReadWrite)
3441
+ FString TimestampNano = " 0" ;
3442
+
3443
+ // / <summary>
3444
+ // / Content stored as SVOData.
3445
+ // / Allow any type of content, including raw data like compressed images or JSON.
3446
+ // / </summary>
3447
+ UPROPERTY (EditAnywhere, BlueprintReadWrite)
3448
+ FString Content = " " ;
3449
+
3450
+ FSlSVOData ()
3451
+ :
3452
+ Key (" " ),
3453
+ TimestampNano (" " ),
3454
+ Content (" " )
3455
+ {}
3456
+ };
3457
+
3458
+
3427
3459
/*
3428
3460
* Rendering parameters
3429
3461
*/
0 commit comments