Adding platesolving

This commit is contained in:
2024-09-30 18:39:35 +02:00
parent dccb2e88da
commit 32973c54ce
16 changed files with 1075 additions and 210 deletions
+4 -1
View File
@@ -1,6 +1,7 @@
#ifndef PLATESOLVING_H
#define PLATESOLVING_H
#include "qelapsedtimer.h"
#include <QDockWidget>
class Solver;
@@ -17,6 +18,7 @@ class PlateSolving : public QDockWidget
Solver *_solver;
std::shared_ptr<RawImage> _rawImage;
QString _path;
QElapsedTimer _solvingTime;
public:
explicit PlateSolving(QWidget *parent = nullptr);
~PlateSolving();
@@ -27,8 +29,9 @@ public slots:
void solve();
void solvingDone();
void imageLoaded(Image *image);
void settings();
private:
Ui::PlateSolving *ui;
Ui::PlateSolving *_ui;
};
#endif // PLATESOLVING_H