Hi,
I'm looking to have a GUI that has multiple areas to show images. This is mainly for debugging so that I can show the image and various stages of the algorithm - maybe something like imshow(window_id, image_name)
. But I also don't want to have to waitkey
all the time - the display window should just always be running and displaying images as and when possible.
What's the best way to implement this? Is it using a qt GUI?
Thank you