Main Content

deleteView

Delete view from map

Since R2021a

Description

sMapOut = deleteView(sMapIn,viewIds) deletes the specified views viewIds, along with their corresponding features and segments.

example

Examples

collapse all

Load a map of segments and features from a MAT file into the workspace.

data = load('segmatchMapFullParkingLot.mat');
sMap = data.segmatchMapFullParkingLot;

Visualize the map.

figure 
show(sMap)
title('Map Before Deleting Views') 

Figure contains an axes object. The axes object with title Map Before Deleting Views contains an object of type scatter.

Delete the first 50 views from the map.

viewIds = 1:50;
sMap = deleteView(sMap,viewIds);

Visualize the map after deleting the views.

figure 
show(sMap)
title('Map After Deleting the First 50 Views')

Figure contains an axes object. The axes object with title Map After Deleting the First 50 Views contains an object of type scatter.

Input Arguments

collapse all

Original map of segments and features, specified as a pcmapsegmatch object.

View identifiers, specified as an M-element vector. M is the number of views to delete. Each view identifier is unique to a specific view.

Output Arguments

collapse all

Updated map of segments and features, returned as a pcmapsegmatch object.

Version History

Introduced in R2021a

See Also

Functions

Objects