Измените описание атрибута в объекте создателя определения метки для рабочего процесса лидара
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]'