Modify attribute description in label definition creator object for lidar workflow
editAttributeDescription(
modifies the description of the specified attribute ldc
,labelName
,attributeName
,description
)attributeName
of the
label labelName
. The label must be contained within the labelDefinitionCreatorLidar
object
ldc
.
Create an empty labelDefinitionCreatorLidar
object.
ldc = labelDefinitionCreatorLidar;
Cuboid
label, Vehicle
, to the label definition
creator object.
addLabel(ldc, 'Vehicle', 'Cuboid');
Add a Color
attribute to the Vehicle
label.
addAttribute(ldc,'Vehicle','Color','String','Red')
info(ldc,'Vehicle/Color')
Name: "Color" Type: String DefaultValue: 'Red' Description: ' '
Modify the attribute description.
editAttributeDescription(ldc,'Vehicle','Color','Color of the vehicle in RGB format - [1 0 0]')
info(ldc,'Vehicle/Color')
Name: "Color" Type: String DefaultValue: 'Red' Description: 'Color of the vehicle in format RGB - [1 0 0]'