<aside> đź’ˇ The goal of this feature is for users to be able to annotate relationships between objects.

</aside>

Main design decisions

UX

Category editor

Labeling interface

Label format

"frames": [
    {
      "annotations": [...],
      "links": [
        {
          "from_id": 2,
          "to_id": 5,
          "attributes": {...}
        }
      ]
    },
    {...},
    {...}
  ]
"frames": [
    {
      "annotations": [
	      {
		      "track_id": 2,
		      "category_id": 4,
		      "attributes": {...}, // The *object* attributes
		      "links": [ // List of links where this object is the parent
			      {
				      "to_id": 5,
				      "attributes": {...} // The *link* attributes
				    },
				    ...
		      ]
	      }
      ],
    },
    {...},
    {...}
  ]

Implementation for Torc BeV project

<aside> đź’ˇ Below are some examples of how the linking feature would be used for the BeV project

</aside>