Измените описание атрибута в объекте создателя определения метки для рабочего процесса лидара
editAttributeDescription(
изменяет описание заданного атрибута ldc
,labelName
,attributeName
,description
)attributeName
метки labelName
. Метка должна содержаться в labelDefinitionCreatorLidar
ldc объекта
.
Создайте пустую labelDefinitionCreatorLidar
объект.
ldc = labelDefinitionCreatorLidar;
Cuboid
метки, Vehicle
, к объекту определения метки.
addLabel(ldc, 'Vehicle', 'Cuboid');
Добавление Color
атрибут к Vehicle
метка.
addAttribute(ldc,'Vehicle','Color','String','Red')
info(ldc,'Vehicle/Color')
Name: "Color" Type: String DefaultValue: 'Red' 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]'