Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

show many images in different windows in a loop using one imshow command

I want to show many images in different windows in a loop. I am currently doing this

 for (int i=0; i<keyframesbuffer.size(); i++)
 {
    imshow("Keyframe",keyframesbuffer[i]);
    cv::waitKey(60);

 }

but it creates a single window . can anyone please tell me how to make multiple windows in a loop. thanks for any help.