Remove label from label definition creator for lidar workflow
removeLabel(
removes the specified label ldc
,labelName
)labeName
from the labelDefinitionCreatorLidar
object
ldc
.
Create an empty labelDefinitionCreatorLidar
object.
ldc = labelDefinitionCreatorLidar;
Cuboid
label, Vehicle
, to the label definition
creator object.
addLabel(ldc,'Vehicle','Cuboid')
Cuboid
label, Car
, to the
object.addLabel(ldc,'Car','Cuboid')
ldc
ldc = labelDefinitionCreatorLidar contains the following labels: Vehicle with 0 attributes and belongs to None group. (info) Car with 0 attributes and belongs to None group. (info) For more details about attributes, use the info method.
'Car'
label and display the object to confirm that the label has
been
removed.removeLabel(ldc,'Car')
ldc
ldc = labelDefinitionCreatorLidar contains the following labels: Vehicle with 0 attributes and belongs to None group. (info) For more details about attributes, use the info method.