aboutsummaryrefslogtreecommitdiff
path: root/src/argaze/utils/demo_environment/demo_ar_features_setup.json
blob: 6f7931889ff8de000c054ab097ac700a2c96e256 (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
    "name": "AR Environment Demo",
    "aruco_detector": {
        "dictionary": {
            "name": "DICT_APRILTAG_16h5"
        },
        "marker_size": 5,
        "optic_parameters": "optic_parameters.json",
        "parameters": {
            "cornerRefinementMethod": 3,
            "aprilTagQuadSigma": 2,
            "aprilTagDeglitch": 1
        }
    },
    "camera_frame": {
        "gaze_movement_identifier": {
                "DispersionThresholdIdentification": {
                    "deviation_max_threshold": 50,
                    "duration_min_threshold": 200
                }
            }
    },
    "scenes": {
        "AR Scene Demo" : {
            "aruco_scene": "aruco_scene.obj",
            "aoi_3d_scene": "aoi_3d_scene.obj",
            "aoi_frames": {
                "GrayRectangle": {
                    "size": [640, 480],
                    "background": "frame_background.jpg",
                    "gaze_movement_identifier": {
                        "DispersionThresholdIdentification": {
                            "deviation_max_threshold": 50,
                            "duration_min_threshold": 200
                        }
                    }
                }
            },
            "aruco_axis": {
                "lower_left_corner": {
                    "origin_marker": 2,
                    "horizontal_axis_marker": 3,
                    "vertical_axis_marker": 0
                },
                "lower_right_corner": {
                    "origin_marker": 3,
                    "horizontal_axis_marker": 2,
                    "vertical_axis_marker": 1
                },
                "upper_left_corner": {
                    "origin_marker": 0,
                    "horizontal_axis_marker": 1,
                    "vertical_axis_marker": 2
                },
                "upper_right_corner": {
                    "origin_marker": 1,
                    "horizontal_axis_marker": 0,
                    "vertical_axis_marker": 3
                }
            },
            "aruco_aoi": {
                "GrayRectangle": {
                    "upper_left_corner": {
                        "marker_identifier": 0,
                        "marker_corner_index": 2
                    },
                    "upper_right_corner": {
                        "marker_identifier": 1,
                        "marker_corner_index": 3
                    },
                    "lower_left_corner": {
                        "marker_identifier": 2,
                        "marker_corner_index": 1
                    },
                    "lower_right_corner": {
                        "marker_identifier": 3,
                        "marker_corner_index": 0
                    },
                    "inner_aoi": "all"
                }
            },
            "angle_tolerance": 15.0,
            "distance_tolerance": 2.54
        }
    }
}