You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
559 B
28 lines
559 B
#ifndef LIBCALIBRAT_H |
|
#define LIBCALIBRAT_H |
|
|
|
#include <QObject> |
|
#include <OpenCV2/opencv.hpp> |
|
class MultiPoint; |
|
class libCalibrat : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit libCalibrat(QObject *parent = nullptr); |
|
|
|
|
|
signals: |
|
void signalsetparas(int _row, int _col); |
|
void signalsetdevice(QString ); |
|
void signalsetIT(double); |
|
void signalloadfile(); |
|
void signalrun(cv::Mat); |
|
void signalStatus(bool); |
|
|
|
void signalsendimag(cv::Mat); |
|
void signallogtext(QString); |
|
private : |
|
MultiPoint* mp; |
|
}; |
|
|
|
#endif // LIBCALIBRAT_H
|
|
|