Commit 5b0cd71f authored by Eric Nassor's avatar Eric Nassor
Browse files

removed the unknownSubclass in ObjectClass and its associated type UnknownSubclassType

parent 5e709e9c
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -252,8 +252,8 @@ MessageSegmentInfo ::= SEQUENCE {
ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence

-- @brief Object Class with Confidence
-- Describes the classification of a detected object. The object can be classified into one of five
-- categories: unknown, vehicle, person, animal and other. The classification is provided with a
-- Describes the classification of a detected object. The object can be classified into one of four
-- categories: vehicle, person, animal and other. The classification is provided with a
-- confidence indication.
ObjectClassWithConfidence ::= SEQUENCE {
    -- @todo
@@ -266,7 +266,6 @@ ObjectClassWithConfidence ::= SEQUENCE {
-- The class that best describes the detected object. Each class provides optional subclasses and
-- an associated confidence for the subclass.
ObjectClass ::= CHOICE {
    unknownSubclass     UnknownSubclassType,
    vehicleSubclass     VehicleSubclassType,
    personSubclass      PersonSubclassType,
    animalSubclass      AnimalSubclassType,
@@ -294,12 +293,6 @@ NodeOffsetPointZ ::= CHOICE {
    node-Z6 Offset-B16  -- node is within 327.67m of last node
}

-- @brief Unknown Subclass Type
-- Describes the subclass of a detected object for class unknown.
-- @unit n/a
UnknownSubclassType ::= INTEGER {
    unknown             (0)
} (0..255)

-- @brief Animal Subclass Type
-- Describes the subclass of a detected object for class animal.