Add actions for peak and star find

This commit is contained in:
2019-09-28 10:57:48 +02:00
parent c4f25c32ed
commit b5d63a6185
7 changed files with 68 additions and 17 deletions
+4 -2
View File
@@ -46,7 +46,7 @@ class ImageRingList : public QObject
QList<ImagePtr>::iterator m_lastImage;
QFileSystemWatcher m_fileSystemWatcher;
bool m_liveMode;
bool m_calculateStats;
AnalyzeLevel m_analyzeLevel;
public:
explicit ImageRingList(QObject *parent = 0);
~ImageRingList();
@@ -57,7 +57,9 @@ public:
void decrement();
void setLiveMode(bool live);
void setCalculateStats(bool stats);
bool calculateStats() const;
void setFindPeaks(bool findPeaks);
void setFindStars(bool findStars);
AnalyzeLevel analyzeLevel() const;
protected:
void setFiles(const QStringList files, const QString &currentFile = QString());
QList<ImagePtr>::iterator increment(QList<ImagePtr>::iterator iter);