Commit 2ae1ba55 authored by Sylvain Renault's avatar Sylvain Renault
Browse files

Trackables and anchors now have a name param (naming the elements are crucial...

Trackables and anchors now have a name param (naming the elements are crucial to understand the graph and useful for the GUI).
New ObjectType (NotIdentified) for to/from of a WorldLink when element is deleted from the graph.
New encoding types: vuforia, aruco.
parent 5da5faa7
Loading
Loading
Loading
Loading
+12 −2
Original line number Diff line number Diff line
@@ -389,6 +389,7 @@ components:
    Trackable:
      type: object
      required:
        - name
        - creatorUUID
        - trackableType
        - trackableEncodingInformation
@@ -403,6 +404,10 @@ components:
          type: string
          format: uuid
          example: fa8bbe40-8052-11ec-a8a3-0242ac120002
        name:
          description: A human readable name for the trackable.
          type: string
          example: newTrackableXYZ
        creatorUUID:        
          description: A Universally Unique IDentifier identifying the creator of the trackable (a person, a team or a company).
          type: string
@@ -432,6 +437,7 @@ components:
    WorldAnchor:
      type: object
      required:
        - name
        - creatorUUID        
        - localCRS
        - unit
@@ -443,6 +449,10 @@ components:
          type: string
          format: uuid
          example: ce8ccd80-56ee-2a5c-a8a3-0242ac150d002
        name:
          description: A human readable name for the world anchor.
          type: string
          example: newWorldAnchorXYZ
        creatorUUID:
          description: A Universally Unique IDentifier identifying the creator of the world anchor.
          type: string
@@ -536,7 +546,7 @@ components:
        dataFormat:
          description: Identifier of the target framework
          type: string
          enum: [HOLOLENS, ARKIT, ARCORE]
          enum: [HOLOLENS, ARKIT, ARCORE, VUFORIA, ARUCO]
          example : "HOLOLENS"
        version:
          description: The version of the format
@@ -559,7 +569,7 @@ components:
    ObjectType:
        description: Type of an world representaion object.
        type: string
        enum: [Trackable, WorldAnchor, WorldLink]
        enum: [Trackable, WorldAnchor, WorldLink, NotIdentified]
        example: Trackable

    UnitSystem: