Matlab - implay's default size window

前端 未结 3 1145
再見小時候
再見小時候 2021-01-01 04:08

I am using implay to play some frames i want, the thing is that window size that pops is a bit small,so the user must maximize it by himself, is there any w

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 04:38

    handle = implay(movie);
    handle.Parent.Position = [100 100 700 550];
    

    Also works if you want to set window size.

提交回复
热议问题