Adding platesolving
This commit is contained in:
@@ -15,10 +15,11 @@ class Solver : public QObject
|
||||
QString _path;
|
||||
QString _error;
|
||||
std::shared_ptr<RawImage> _rawImage;
|
||||
std::shared_ptr<RawImage> _rawImagePlanar;
|
||||
public:
|
||||
explicit Solver(QObject *parent = nullptr);
|
||||
~Solver();
|
||||
void setIndexFolders(const QStringList &list);
|
||||
void setIndexFolder(const QString &indexPath);
|
||||
|
||||
bool loadImage(const QString &path);
|
||||
bool loadImage(std::shared_ptr<RawImage> &image, const QString &path);
|
||||
@@ -32,6 +33,8 @@ public:
|
||||
void updateHeader();
|
||||
void setParameters(SSolver::Parameters::ParametersProfile profile);
|
||||
void setParameters(const SSolver::Parameters ¶meters);
|
||||
void setSearchScale(double fovLow, double fowHigh, ScaleUnits units);
|
||||
void setSearchPosition(double ra, double dec);
|
||||
|
||||
static QStringList getIndexPaths();
|
||||
static QString getTenmonIndexPath();
|
||||
@@ -40,6 +43,7 @@ public slots:
|
||||
signals:
|
||||
void solvingDone();
|
||||
void extractionDone();
|
||||
void logOutput(const QString &log);
|
||||
};
|
||||
|
||||
#endif // SOLVER_H
|
||||
|
||||
Reference in New Issue
Block a user