Using opencv in Win32 application for image show
Posted
by erjik
on Stack Overflow
See other posts from Stack Overflow
or by erjik
Published on 2010-06-18T06:08:42Z
Indexed on
2010/06/18
6:13 UTC
Read the original article
Hit count: 221
Is it possible to output images so that they all will be inside a single window? Before, I used to output data using only opencv functions:
cvNamedWindow("Image 1");
cvShowImage("Image 1", img);
So I change image, then call: cvShowImage
function and so on.
But If I want to look at more than one image, then every new image needs its own window to be shown there And what I want is to put every such an output opencv's window inside one big main window.
Is it possible to do it? And how?
© Stack Overflow or respective owner