HighGUI
-
Using Highgui image window inside Qt Widget
I would like to use opencv highgui image window within QT Widget in C++. So that I can add some QPushButtons at the bottom of the image. Based on these buttons I would like to do different operations.
How to do this?
Your help is appreciated. -
Using Highgui image window inside Qt Widget
I would like to use opencv highgui image window within QT Widget in C++. So that I can add some QPushButtons at the bottom of the image. Based on these buttons I would like to do different operations.
How to do this?
Your help is appreciated.@PVS71 You can embed external windows using https://doc.qt.io/qt-6/qtdoc-demos-windowembedding-example.html
-
Using Highgui image window inside Qt Widget
I would like to use opencv highgui image window within QT Widget in C++. So that I can add some QPushButtons at the bottom of the image. Based on these buttons I would like to do different operations.
How to do this?
Your help is appreciated.Either embed the native window as Qt Widget in a container as shown by @jsulm in the linked documentation page
OR
you can simply create aQImage
fromcv::Mat
and show the image data directly through Qt using aQLabel
for example.
What is the reason for you to want the OCV Image output window?