removeLabel

Удалите метку из объекта создателя определения метки для многосигнального рабочего процесса

Синтаксис

Описание

пример

removeLabel(ldc,labelName) удаляет указанную метку из labelDefinitionCreatorMultisignal ldc объекта.

Примечание

Удаление метки также удаляет любые подметки или атрибуты, связанные с этой меткой.

Примеры

свернуть все

Загрузите существующую таблицу определений меток в рабочую область.

labelDefFile = fullfile(toolboxdir('driving'),'drivingdata','labelDefsMultiSignal.mat');
ld = load(labelDefFile)
ld = struct with fields:
    labelDefs: [6x6 table]

Создайте labelDefinitionCreatorMultisignal объект из таблицы определений меток.

ldc = labelDefinitionCreatorMultisignal(ld.labelDefs)
ldc = 
labelDefinitionCreatorMultisignal contains the following labels:

	Car with 0 sublabels and 0 attributes and belongs to None group.	(info)
	LeftLane with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Road with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Sunny with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Urban with 0 sublabels and 0 attributes and belongs to None group.	(info)

For more details about attributes and sublabels, use the info method.

Удалите метку, вызываемую 'Car'.

removeLabel(ldc,'Car');

Отображение подробных данных обновленной labelDefinitionCreatorMultisignal объект, чтобы подтвердить, что метка была удалена.

ldc
ldc = 
labelDefinitionCreatorMultisignal contains the following labels:

	LeftLane with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Road with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Sunny with 0 sublabels and 0 attributes and belongs to None group.	(info)
	Urban with 0 sublabels and 0 attributes and belongs to None group.	(info)

For more details about attributes and sublabels, use the info method.

Входные параметры

свернуть все

Создатель определения метки для многосигнального рабочего процесса, заданный как labelDefinitionCreatorMultisignal объект.

Имя метки, заданное как вектор символов или строковый скаляр, который однозначно идентифицирует метку, которая будет удалена из ldc объект.

См. также

Объекты

Функции

Введенный в R2020a
Для просмотра документации необходимо авторизоваться на сайте