vedo icon indicating copy to clipboard operation
vedo copied to clipboard

How to open two seperate windows in vedo ?

Open OhmPuchiss opened this issue 1 year ago • 4 comments

I want to open two vedo windows.

OhmPuchiss avatar May 18 '24 08:05 OhmPuchiss

Creating two instances of Plotter? Maybe like this:

plt1=Plotter() plt2=Plotter() ... plt1.show(,,interactive=False) plt2.show(,,interactive=False)

ZiguoAtGitHub avatar May 18 '24 14:05 ZiguoAtGitHub

image How to open these two windows ? I want one window to open opencv window and one for vedo. Two windows can communicate with one another.

OhmPuchiss avatar May 18 '24 17:05 OhmPuchiss

Or how to further run the script after the plt.show() is used.

OhmPuchiss avatar May 18 '24 17:05 OhmPuchiss

Try

vedo --search multi

vedo --run multiwindows1
vedo --run multiwindows2

Or how to further run the script after the plt.show() is used.

plt.show(..., interactive=False)

marcomusy avatar May 18 '24 17:05 marcomusy