Main Content

hide

Hide player figure

Description

example

hide(player) hides the figure. To redisplay the player, use show(player).

Examples

collapse all

Load point cloud.

ptCloud = pcread('teapot.ply');

Create the player and customize player axis labels.

player = pcplayer(ptCloud.XLimits,ptCloud.YLimits,ptCloud.ZLimits);

Figure Point Cloud Player contains an axes object. The axes object with xlabel X, ylabel Y contains an object of type scatter.

Hide figure.

hide(player)

Show figure.

show(player)
view(player,ptCloud);

Figure Point Cloud Player contains an axes object. The axes object with xlabel X, ylabel Y contains an object of type scatter.

Input Arguments

collapse all

Player for data, specified as a pcplayer or vision.VideoPlayer object.

Version History

Introduced in R2015b