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.