Rev 287 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#include "MainWindow.h"Q_DECLARE_METATYPE(cv::Mat);int main(int argc, char *argv[]) {QApplication app(argc, argv);MainWindow window;window.show();qRegisterMetaType<cv::Mat>();qRegisterMetaType<QImage>();qRegisterMetaType<QVector<QVector<short>>>();return app.exec();}