Main Content

deleteView

Delete view from map

Since R2021a

Description

example

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

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') 

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')

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