29 #include "ui_aboutDialog.h"
30 #include <opencv2/core/version.hpp>
31 #include "find_object/Version.h"
38 ui_ =
new Ui_aboutDialog();
40 ui_->label_version->setText(PROJECT_VERSION);
42 QString cv_version = CV_VERSION;
43 #if FINDOBJECT_NONFREE == 1
44 cv_version.append(
" [With nonfree]");
46 cv_version.append(
" [Without nonfree]");
49 ui_->label_version_opencv->setText(cv_version);
50 ui_->label_version_qt->setText(QT_VERSION_STR);