I have a list of image:
vector<string> images; images.push_back("image0001.png"); //> And more
I want to read any of them and show them. The problem is that opencv overlap them. I would avoid to have to manually move them.
I was trying something with moveWindow but with bad results. Is there any better function to order all opened windows?