在我的项目中,我想使用matlab函数implay()
播放多个视频。在matlab中,可以使用命令title
来区分数字。是否有类似方法将标题附加到使用implay
创建的视频?
答案 0 :(得分:3)
获取implay
对象的句柄。它的父母是这个数字。因此,将父级'Name'
属性设置为所需的标题:
load cellsequence %// example taken from `implay`'s help
h = implay(cellsequence,10); %// call `implay` and get a handle
set(h.Parent, 'Name', 'Write your title here') %// set title
结果(在Matlab R2010b中)是: