Skip to content

UI-Configuration JSON

Below is a base UI Configuration JSON will all items turn on. If you see any of these values to false it will turn off the top level item. If the top level item is turned into an Object it will then read the settings of that object. You can note that below in the other documentation.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 "UISettings": {
        "UIContextBar": true,
        "UIControls": true,
        "UIInteractions": true,
        "UISideBar": true,
        "UITimeline": true,
        "UIToolBar": true,
        "UITopBar": true,
        "UITrackDetails": true
    },

Below is the configuration JSON for a view with all of the items turned off

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"configuration": {
    "UISettings": {
        "UITopBar": {
            "UIData": false,
            "UIJobs": false,
            "UINextPrev": false,
            "UIToolBox": false,
            "UISlicerCLI": false,
            "UIImport": false,
            "UIExport": false,
            "UIClone": false,
            "UIConfiguration": false,
            "UIKeyboardShortcuts": false,
            "UISave": false
        },
        "UIToolBar": {
            "UIEditingInfo": false,
            "UIEditingTypes": [
                false,
                false,
                false
            ],
            "UIVisibility": [
                false,
                false,
                false,
                false,
                false
            ],
            "UITrackTrails": false
        },
        "UISideBar": {
            "UITrackTypes": false,
            "UIConfidenceThreshold": false,
            "UITrackList": false,
            "UIAttributeSettings": false,
            "UIAttributeAdding": false,
            "UIAttributeUserReview": false
        },
        "UIContextBar": {
            "UIThresholdControls": false,
            "UIImageEnhancements": false,
            "UIGroupManager": false,
            "UIAttributeDetails": false,
            "UIRevisionHistory": false,
            "UIDatasetInfo": false
        },
        "UITrackDetails": {
            "UITrackBrowser": false,
            "UITrackMerge": false,
            "UIConfidencePairs": false,
            "UITrackAttributes": false,
            "UIDetectionAttributes": false
        },
        "UIControls": {
            "UIPlaybackControls": false,
            "UIAudioControls": false,
            "UISpeedControls": false,
            "UITimeDisplay": false,
            "UIFrameDisplay": false,
            "UIImageNameDisplay": false,
            "UILockCamera": false
        },
        "UITimeline": {
            "UIDetections": false,
            "UIEvents": false
        },
        "UIInteractions": {
            "UISelection": false,
            "UIEditing": false
        }
    }
}