File indexing completed on 2024-05-12 04:45:55

0001 #pragma once
0002 
0003 #include <QObject>
0004 #include <QString>
0005 //#include <opencv4/opencv2/opencv.hpp>
0006 
0007 class DoodleHanlder : public QObject
0008 {
0009     Q_OBJECT
0010 public:
0011     explicit DoodleHanlder(QObject *parent = nullptr);
0012 
0013 public Q_SLOTS:
0014     QString getText(const QString &imagePath);
0015 
0016 };