フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to see the output and input vide together

1 回表示 (過去 30 日間)
sonu
sonu 2013 年 6 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
hi can any one help me to solve the problem i have two video input and segmented output video i want to see it together..
that shown in this link, like that https://www.youtube.com/watch?v=0rD0-Ggwd6Y

回答 (1 件)

David Sanchez
David Sanchez 2013 年 6 月 18 日
You need to create a GUI and add two axes to it. Each one will have a tag assigned to it ( see it in the property inspector ). To plot/see anything in a particular axes, add the corresponding parameter to the plot/show function:
plot(x,y,'Parent',handles.my_axes_1_tag ); %this present x,y data in axes _my_axes_1_tag
plot(z,t,'Parent',handles.my_axes_2_tag ); %this present z,t data in axes _my_axes_2_tag
It works the same way when presenting images
  1 件のコメント
sonu
sonu 2013 年 6 月 18 日
sorry but i cn't understand...is there any command to see it

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by