Visible or hidden status for player
isOpen(player)
example
isOpen(player) returns true or false to indicate whether the player is visible.
player
true
false
collapse all
Close the display of continuous point cloud player
Add data to the point cloud player.
player = pcplayer([0 1],[0 1],[0 1]);
Display continuous player figure. Use the isOpen method to check if player figure window is open.
isOpen
while isOpen(player) ptCloud = pointCloud(rand(1000,3,'single')); view(player, ptCloud); end
Terminate the while-loop by closing pcplayer figure window.
pcplayer
Video player, specified as a pcplayer, or vision.DeployableVideoPlayer object.
vision.DeployableVideoPlayer
You have a modified version of this example. Do you want to open this example with your edits?