为什么我得到 QUnhandledException?

Why am I getting QUnhandledException?

我 运行 使用 OpenBR V1.1.0 和 Ubuntu 14.04.3 上的 OpenCV-2.4.11 运行 遇到同样的错误。通过卸载 QT4.x 并将 OpenCV 与 QT5 显式链接,我能够超越 QUnhandledException。在 this open GitHub issue 的帮助下,我通过执行以下操作使事情正常进行。

卸载早期版本的QT:

apt-get remove qt4-linguist-tools
apt-get remove qt4-qmake
apt-get autoremove

安装QT5:

apt-get install qtdeclarative5-dev
apt-get install qttools5-dev-tools

使用此 cmake 命令从源代码构建 OpenCV:

cmake -DWITH_QT5=ON -DCMAKE_BUILD_TYPE=Release ..

从源代码构建 OpenBR