It seems that I can create some elements of the GUI without compiling OpenCV with QT and some I can't,
For example, cv::createTrackbar(...)
works right out of the box, without re-compiling OpenCV. But cv::createButton(...)
requires building OpenCv with QT enabled.
Is it possible to create some kind of a button without re-compiling OpenCV?
I don't have any issues building it the correct way QT, but I would like to ask this question for any beginners who may be confused by this problem.
Thanks -D