I'm trying to display the output of 2 webcams in 2 windows using SimpleCV, but what I get with the following code is a sputtering combination in what appears to be 2 different sized windows, merged into one.
cam = Camera(0)
cam1 = Camera(1)
while True:
cam.getImage().show()
cam1.getImage().show()
I have performed the same operation successfully with C++/OpenCV, but am hoping to dev using Python/SimpleCV.
The SimpleCV docs on show() which I've found aren't very verbose. Any leads?