Kstars

focus.h
1/*
2 SPDX-FileCopyrightText: 2012 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_focus.h"
10#include "focusfourierpower.h"
11#include "ekos/ekos.h"
12#include "parameters.h"
13#include "ekos/auxiliary/filtermanager.h"
14
15#include "indi/indicamera.h"
16#include "indi/indifocuser.h"
17#include "indi/indistd.h"
18#include "indi/indiweather.h"
19#include "indi/indimount.h"
20
21#include "opsfocussettings.h"
22#include "opsfocusprocess.h"
23#include "opsfocusmechanics.h"
24#include "ui_cfz.h"
25#include "focusutils.h"
26
27class FocusProfilePlot;
28class FITSData;
29class FITSView;
30class FITSViewer;
31
32namespace Ekos
33{
34
35class DarkProcessor;
37class FocusFWHM;
38#if defined(HAVE_OPENCV)
39class FocusBlurriness;
40#endif
41class PolynomialFit;
42class AdaptiveFocus;
43class FocusAdvisor;
44class StellarSolverProfileEditor;
45
46/**
47 * @class Focus
48 * @short Supports manual focusing and auto focusing using relative and absolute INDI focusers.
49 *
50 * @author Jasem Mutlaq
51 * @version 1.5
52 */
53class Focus : public QWidget, public Ui::Focus
54{
56
57 // AdaptiveFocus and FocusAdvisor are friend classes so they can access methods in Focus
58 friend class AdaptiveFocus;
59 friend class FocusAdvisor;
60 friend class FocusModule;
61
62 public:
63 Focus(int id = 0);
64 ~Focus();
65
66 typedef enum { FOCUS_NONE, FOCUS_IN, FOCUS_OUT } Direction;
67 typedef enum { FOCUS_MANUAL, FOCUS_AUTO } Type;
68 typedef enum { FOCUS_ITERATIVE, FOCUS_POLYNOMIAL, FOCUS_LINEAR, FOCUS_LINEAR1PASS } Algorithm;
69 typedef enum { FOCUS_CFZ_CLASSIC, FOCUS_CFZ_WAVEFRONT, FOCUS_CFZ_GOLD } CFZAlgorithm;
70 typedef enum { FOCUS_STAR_HFR, FOCUS_STAR_HFR_ADJ, FOCUS_STAR_FWHM, FOCUS_STAR_NUM_STARS, FOCUS_STAR_FOURIER_POWER, FOCUS_STAR_STDDEV, FOCUS_STAR_SOBEL, FOCUS_STAR_LAPLASSIAN, FOCUS_STAR_CANNY } StarMeasure;
71 typedef enum { FOCUS_STAR_GAUSSIAN, FOCUS_STAR_MOFFAT } StarPSF;
72 typedef enum { FOCUS_UNITS_PIXEL, FOCUS_UNITS_ARCSEC } StarUnits;
73 typedef enum { FOCUS_WALK_CLASSIC, FOCUS_WALK_FIXED_STEPS, FOCUS_WALK_CFZ_SHUFFLE } FocusWalk;
74 typedef enum { FOCUS_MASK_NONE, FOCUS_MASK_RING, FOCUS_MASK_MOSAIC } ImageMaskType;
75
76 /** @defgroup FocusDBusInterface Ekos DBus Interface - Focus Module
77 * Ekos::Focus interface provides advanced scripting capabilities to perform manual and automatic focusing operations.
78 */
79
80 /*@{*/
81
82 /** DBUS interface function.
83 * select the CCD device from the available CCD drivers.
84 * @param device The CCD device name
85 * @return Returns true if CCD device is found and set, false otherwise.
86 */
87 Q_SCRIPTABLE QString camera();
88
89 /** DBUS interface function.
90 * select the focuser device from the available focuser drivers. The focuser device can be the same as the CCD driver if the focuser functionality was embedded within the driver.
91 * @param device The focuser device name
92 * @return Returns true if focuser device is found and set, false otherwise.
93 */
94 Q_SCRIPTABLE QString focuser();
95
96 /** DBUS interface function.
97 * select the filter device from the available filter drivers. The filter device can be the same as the CCD driver if the filter functionality was embedded within the driver.
98 * @param device The filter device name
99 * @return Returns true if filter device is found and set, false otherwise.
100 */
101 Q_SCRIPTABLE QString filterWheel();
102
103 /** DBUS interface function.
104 * select the filter from the available filters.
105 * @param filter The filter name
106 * @return Returns true if filter is found and set, false otherwise.
107 */
108 Q_SCRIPTABLE bool setFilter(const QString &filter);
109 Q_SCRIPTABLE QString filter();
110
111 /** DBUS interface function.
112 * @return Returns True if current focuser supports auto-focusing
113 */
114 Q_SCRIPTABLE bool canAutoFocus()
115 {
116 return (m_FocusType == FOCUS_AUTO);
117 }
118
119 /** DBUS interface function.
120 * @return Returns True if current focuser uses the full field for focusing
121 */
122 Q_SCRIPTABLE bool useFullField()
123 {
124 return m_OpsFocusSettings->focusUseFullField->isChecked();
125 }
126
127 /** DBUS interface function.
128 * @return Returns Half-Flux-Radius in pixels.
129 */
130 Q_SCRIPTABLE double getHFR()
131 {
132 return currentHFR;
133 }
134
135 /** DBUS interface function.
136 * Set CCD exposure value
137 * @param value exposure value in seconds.
138 */
139 Q_SCRIPTABLE Q_NOREPLY void setExposure(double value);
140 Q_SCRIPTABLE double exposure()
141 {
142 return focusExposure->value();
143 }
144
145 /** DBUS interface function.
146 * Set CCD binning
147 * @param binX horizontal binning
148 * @param binY vertical binning
149 */
150 Q_SCRIPTABLE Q_NOREPLY void setBinning(int binX, int binY);
151
152 /** DBUS interface function.
153 * Set Auto Focus options. The options must be set before starting the autofocus operation. If no options are set, the options loaded from the user configuration are used.
154 * @param enable If true, Ekos will attempt to automatically select the best focus star in the frame. If it fails to select a star, the user will be asked to select a star manually.
155 */
156 Q_SCRIPTABLE Q_NOREPLY void setAutoStarEnabled(bool enable);
157
158 /** DBUS interface function.
159 * Set Auto Focus options. The options must be set before starting the autofocus operation. If no options are set, the options loaded from the user configuration are used.
160 * @param enable if true, Ekos will capture a subframe around the selected focus star. The subframe size is determined by the boxSize parameter.
161 */
162 Q_SCRIPTABLE Q_NOREPLY void setAutoSubFrameEnabled(bool enable);
163
164 /** DBUS interface function.
165 * Set Autofocus parameters
166 * @param boxSize the box size around the focus star in pixels. The boxsize is used to subframe around the focus star.
167 * @param stepSize the initial step size to be commanded to the focuser. If the focuser is absolute, the step size is in ticks. For relative focusers, the focuser will be commanded to focus inward for stepSize milliseconds initially.
168 * @param maxTravel the maximum steps permitted before the autofocus operation aborts.
169 * @param tolerance Measure of how accurate the autofocus algorithm is. If the difference between the current HFR and minimum measured HFR is less than %tolerance after the focuser traversed both ends of the V-curve, then the focusing operation
170 * is deemed successful. Otherwise, the focusing operation will continue.
171 */
172 Q_SCRIPTABLE Q_NOREPLY void setAutoFocusParameters(int boxSize, int stepSize, int maxTravel, double tolerance);
173
174 /** DBUS interface function.
175 * resetFrame Resets the CCD frame to its full native resolution.
176 */
177 Q_SCRIPTABLE Q_NOREPLY void resetFrame();
178
179 /** DBUS interface function.
180 * Return state of Focuser module (Ekos::FocusState)
181 */
182
183 Q_SCRIPTABLE Ekos::FocusState status()
184 {
185 return m_state;
186 }
187
188 /** @}*/
189
190 /**
191 * @brief Add CCD to the list of available CCD.
192 * @param newCCD pointer to CCD device.
193 * @return True if added successfully, false if duplicate or failed to add.
194 */
195 bool setCamera(ISD::Camera *device);
196
197 /**
198 * @brief addFocuser Add focuser to the list of available focusers.
199 * @param newFocuser pointer to focuser device.
200 * @return True if added successfully, false if duplicate or failed to add.
201 */
202 bool setFocuser(ISD::Focuser *device);
203
204 /**
205 * @brief reconnectFocuser Add focuser to the list of available focusers.
206 * @param focuser name of the focuser.
207 */
208 void reconnectFocuser(const QString &focuser);
209
210 /**
211 * @brief addFilter Add filter to the list of available filters.
212 * @param newFilter pointer to filter device.
213 * @return True if added successfully, false if duplicate or failed to add.
214 */
215 bool setFilterWheel(ISD::FilterWheel *device);
216
217 /**
218 * @brief setImageMask Select the currently active image mask filtering
219 * the stars relevant for focusing
220 */
221 void selectImageMask();
222
223 /**
224 * @brief updateTemperatureSources Update list of available temperature sources.
225 * @param temperatureSources Devices with temperature reporting capability
226 * @return True if updated successfully
227 */
229
230 /**
231 * @brief removeDevice Remove device from Focus module
232 * @param deviceRemoved pointer to device
233 */
234 void removeDevice(const QSharedPointer<ISD::GenericDevice> &deviceRemoved);
235
236 const QSharedPointer<FilterManager> &filterManager() const
237 {
238 return m_FilterManager;
239 }
240 void setupFilterManager();
241 void connectFilterManager();
242
243 // Settings
244 QVariantMap getAllSettings() const;
245 void setAllSettings(const QVariantMap &settings);
246
247 const QString &opsDialogName() const
248 {
249 return m_opsDialogName;
250 }
251
252public slots:
253
254 /** \addtogroup FocusDBusInterface
255 * @{
256 */
257
258 /* Focus */
259 /** DBUS interface function.
260 * Start the autofocus operation.
261 */
262 Q_SCRIPTABLE Q_NOREPLY void start();
263
264 /** DBUS interface function.
265 * Abort the autofocus operation.
266 */
267 Q_SCRIPTABLE Q_NOREPLY void abort();
268
269 /** DBUS interface function.
270 * Capture a focus frame.
271 * @param settleTime if > 0 wait for the given time in seconds before starting to capture
272 */
273 Q_SCRIPTABLE Q_NOREPLY void capture(double settleTime = 0.0);
274
275 /** DBUS interface function.
276 * Focus inward
277 * @param ms If set, focus inward for ms ticks (Absolute Focuser), or ms milliseconds (Relative Focuser). If not set, it will use the value specified in the options.
278 * @param speedFactor option to multiply the given ms value for faster motion
279 */
280 Q_SCRIPTABLE bool focusIn(int ms = -1, int speedFactor = 1);
281
282 /** DBUS interface function.
283 * Focus outward
284 * @param ms If set, focus outward for ms ticks (Absolute Focuser), or ms milliseconds (Relative Focuser). If not set, it will use the value specified in the options.
285 */
286 Q_SCRIPTABLE bool focusOut(int ms = -1, int speedFactor = 1);
287
288 /**
289 * @brief checkFocus Given the minimum required HFR, check focus and calculate HFR. If current HFR exceeds required HFR, start autofocus process, otherwise do nothing.
290 * @param requiredHFR Minimum HFR to trigger autofocus process.
291 * @param speedFactor option to multiply the given ms value for faster motion
292 */
293 Q_SCRIPTABLE Q_NOREPLY void checkFocus(double requiredHFR);
294
295 /** @}*/
296
297 /**
298 * @brief Run the autofocus process for the currently selected filter
299 * @param The reason Autofocus has been called.
300 */
301 void runAutoFocus(const AutofocusReason autofocusReason, const QString &reasonInfo);
302
303 /**
304 * @brief startFraming Begins continuous capture of the CCD and calculates HFR every frame.
305 */
306 void startFraming();
307
308 /**
309 * @brief Move the focuser to the initial focus position.
310 */
311 void resetFocuser();
312
313 /**
314 * @brief checkStopFocus Perform checks before stopping the autofocus operation. Some checks are necessary for in-sequence focusing.
315 * @param abort true iff focusing should be aborted, false if it should only be stopped and marked as failed
316 */
317 void checkStopFocus(bool abort);
318
319 /**
320 * @brief React when a meridian flip has been started
321 */
322 void meridianFlipStarted();
323
324 /**
325 * @brief Check CCD and make sure information is updated accordingly. This simply calls syncCameraInfo for the current CCD.
326 * @param CCDNum By default, we check the already selected CCD in the dropdown menu. If CCDNum is specified, the check is made against this specific CCD in the dropdown menu.
327 * CCDNum is the index of the CCD in the dropdown menu.
328 */
329 void checkCamera();
330
331 /**
332 * @brief syncCameraInfo Read current CCD information and update settings accordingly.
333 */
334 void syncCameraInfo();
335
336 /**
337 * @brief Update camera controls like Gain, ISO, Offset...etc
338 */
339 void syncCCDControls();
340
341 /**
342 * @brief Check Focuser and make sure information is updated accordingly.
343 * @param FocuserNum By default, we check the already selected focuser in the dropdown menu. If FocuserNum is specified, the check is made against this specific focuser in the dropdown menu.
344 * FocuserNum is the index of the focuser in the dropdown menu.
345 */
346 void checkFocuser();
347
348 /**
349 * @brief Check Filter and make sure information is updated accordingly.
350 * @param filterNum By default, we check the already selected filter in the dropdown menu. If filterNum is specified, the check is made against this specific filter in the dropdown menu.
351 * filterNum is the index of the filter in the dropdown menu.
352 */
353 void checkFilter();
354
355 /**
356 * @brief Check temperature source and make sure information is updated accordingly.
357 * @param name Name of temperature source, if empty then use current source.
358 */
359 void checkTemperatureSource(const QString &name = QString());
360
361 /**
362 * @brief clearDataPoints Remove all data points from HFR plots
363 */
364 void clearDataPoints();
365
366 /**
367 * @brief focusStarSelected The user selected a focus star, save its coordinates and subframe it if subframing is enabled.
368 * @param x X coordinate
369 * @param y Y coordinate
370 */
371 void focusStarSelected(int x, int y);
372
373 /**
374 * @brief selectFocusStarFraction Select the focus star based by fraction of the overall size.
375 * It calls focusStarSelected after multiplying the fractions (0.0 to 1.0) with the focus view width and height.
376 * @param x final x = x * focusview_width
377 * @param y final y = y * focusview_height
378 */
379 void selectFocusStarFraction(double x, double y);
380
381 /**
382 * @brief newFITS A new FITS blob is received by the CCD driver.
383 * @param bp pointer to blob data
384 */
385 void processData(const QSharedPointer<FITSData> &data);
386
387 /**
388 * @brief updateProperty Read focus number properties of interest as they arrive from the focuser driver and process them accordingly.
389 * @param prop INDI Property
390 */
391 void updateProperty(INDI::Property prop);
392
393 /**
394 * @brief processTemperatureSource Updates focus temperature source.
395 * @param nvp pointer to updated focuser number property.
396 */
397 void processTemperatureSource(INDI::Property prop);
398
399 /**
400 * @brief setFocusStatus Upon completion of the focusing process, set its status (fail or pass) and reset focus process to clean state.
401 * @param status If true, the focus process finished successfully. Otherwise, it failed.
402 */
403 //void setAutoFocusResult(bool status);
404 // Logging
405 void appendLogText(const QString &logtext);
406 void appendFocusLogText(const QString &text);
407
408 // Adjust focuser offset, relative or absolute
409 void adjustFocusOffset(int value, bool useAbsoluteOffset);
410
411 // Update Mount module status
412 void setMountStatus(ISD::Mount::Status newState);
413
414 // Update Altitude From Mount
415 void setMountCoords(const SkyPoint &position, ISD::Mount::PierSide pierSide, const dms &ha);
416
417 /**
418 * @brief toggleVideo Turn on and off video streaming if supported by the camera.
419 * @param enabled Set to true to start video streaming, false to stop it if active.
420 */
421 void toggleVideo(bool enabled);
422
423 /**
424 * @brief setWeatherData Updates weather data that could be used to extract focus temperature from observatory
425 * in case focus native temperature is not available.
426 */
427 //void setWeatherData(const std::vector<ISD::Weather::WeatherData> &data);
428
429 /**
430 * @brief loadOptionsProfiles Load StellarSolver Profile
431 */
433
434 /**
435 * @brief getStellarSolverProfiles
436 * @return list of StellarSolver profile names
437 */
438 QStringList getStellarSolverProfiles();
439
440 QString opticalTrain() const
441 {
442 return opticalTrainCombo->currentText();
443 }
444 void setOpticalTrain(const QString &value)
445 {
446 opticalTrainCombo->setCurrentText(value);
447 }
448
449 /**
450 * @brief adaptiveFocus moves the focuser between subframes to stay at focus
451 */
452 void adaptiveFocus();
453
454 protected:
455 void addPlotPosition(int pos, double hfr, bool plot = true);
456
457 private slots:
458 /**
459 * @brief toggleSubframe Process enabling and disabling subfrag.
460 * @param enable If true, subframing is enabled. If false, subframing is disabled. Even if subframing is enabled, it must be supported by the CCD driver.
461 */
462 void toggleSubframe(bool enable);
463
464 void checkAutoStarTimeout();
465
466 void setAbsoluteFocusTicks();
467
468 void updateBoxSize(int value);
469
470 void processCaptureTimeout();
471
472 void processCaptureErrorDefault();
473 void processCaptureError(ISD::Camera::ErrorType type);
474
475 void setCaptureComplete();
476
477 void showFITSViewer();
478
479 void toggleFocusingWidgetFullScreen();
480
481 void setVideoStreamEnabled(bool enabled);
482
483 void starDetectionFinished();
484 void setCurrentMeasure();
485 void startAbIns();
486 void manualStart();
487
488 signals:
489 void newLog(const QString &text);
490 void newFocusLog(const QString &text);
491 void newStatus(Ekos::FocusState state, const QString &trainname, const bool update = true);
492 void newHFR(double hfr, int position, bool inAutofocus, const QString &trainname);
493 void newFocusTemperatureDelta(double delta, double absTemperature, const QString &trainname);
494 void inSequenceAF(bool requested, const QString &trainname);
495
496 void absolutePositionChanged(int value);
497 void focusPositionAdjusted();
498 void focusAdaptiveComplete(bool success, const QString &trainname);
499 void focusAFOptimise();
500
501 void trainChanged();
502 void focuserChanged(int id, bool isValid);
503
504 void suspendGuiding();
505 void resumeGuiding();
506 void newImage(const QSharedPointer<FITSView> &view);
507 void newStarPixmap(QPixmap &);
508 void settingsUpdated(const QVariantMap &settings);
509
510 // Signals for Analyze.
511 void autofocusStarting(double temperature, const QString &filter, AutofocusReason reason, const QString &reasonInfo);
512 void autofocusComplete(double temperature, const QString &filter, const QString &points, const bool useWeights,
513 const QString &curve = "", const QString &title = "");
514 void autofocusAborted(const QString &filter, const QString &points, const bool useWeights,
515 const AutofocusFailReason failCode, const QString &failCodeInfo);
516
517 // Focus Advisor
518 void newFocusAdvisorStage(int stage);
519 void newFocusAdvisorMessage(QString name);
520
521 /**
522 * @brief Signal Analyze that an Adaptive Focus iteration is complete
523 * @param Active filter
524 * @param temperature
525 * @param tempTicks is the number of ticks movement due to temperature change
526 * @param altitude
527 * @param altTicks is the number of ticks movement due to altitude change
528 * @param prevPosError is the position error at the previous adaptive focus iteration
529 * @param thisPosError is the position error for the current adaptive focus iteration
530 * @param totalTicks is the total tick movement for this adaptive focus iteration
531 * @param position is the current focuser position
532 * @param focuserMoved indicates whether totalTicks > minimum focuser movement
533 */
534 void adaptiveFocusComplete(const QString &filter, double temperature, double tempTicks, double altitude, double altTicks,
535 int prevPosError, int thisPosError, int totalTicks, int position, bool focuserMoved);
536
537 // HFR V curve plot events
538 /**
539 * @brief initialize the HFR V plot
540 * @param showPosition show focuser position (true) or count focus iterations (false)
541 * @param yAxisLabel is the label to display
542 * @param starUnits the units multiplier to display the pixel data
543 * @param minimum whether the curve shape is a minimum or maximum
544 * @param useWeights whether or not to display weights on the graph
545 * @param showPosition show focuser position (true) or show focusing iteration number (false)
546 */
547 void initHFRPlot(QString str, double starUnits, bool minimum, bool useWeights, bool showPosition);
548
549 /**
550 * @brief new HFR plot position with sigma
551 * @param pos focuser position with associated error (sigma)
552 * @param hfr measured star HFR value
553 * @param sigma is the standard deviation of star HFRs
554 * @param pulseDuration Pulse duration in ms for relative focusers that only support timers,
555 * or the number of ticks in a relative or absolute focuser
556 * */
557 void newHFRPlotPosition(double pos, double hfr, double sigma, bool outlier, int pulseDuration, bool plot = true);
558
559 /**
560 * @brief draw the approximating polynomial into the HFR V-graph
561 * @param poly pointer to the polynomial approximation
562 * @param isVShape has the solution a V shape?
563 * @param activate make the graph visible?
564 */
565 void drawPolynomial(PolynomialFit *poly, bool isVShape, bool activate, bool plot = true);
566
567 /**
568 * @brief draw the curve into the HFR V-graph
569 * @param poly pointer to the polynomial approximation
570 * @param isVShape has the solution a V shape?
571 * @param activate make the graph visible?
572 */
573 void drawCurve(CurveFitting *curve, bool isVShape, bool activate, bool plot = true);
574
575 /**
576 * @brief Focus solution with minimal HFR found
577 * @param solutionPosition focuser position
578 * @param solutionValue HFR value
579 */
580 void minimumFound(double solutionPosition, double solutionValue, bool plot = true);
581
582 /**
583 * @brief Draw Critical Focus Zone on graph
584 * @param solutionPosition focuser position
585 * @param solutionValue HFR value
586 * @param m_cfzSteps the size of the CFZ
587 * @param plt - whether to plot the CFZ
588 */
589 void drawCFZ(double minPosition, double minValue, int m_cfzSteps, bool plt);
590
591 /**
592 * @brief redraw the entire HFR plot
593 * @param poly pointer to the polynomial approximation
594 * @param solutionPosition solution focuser position
595 * @param solutionValue solution HFR value
596 */
597 void redrawHFRPlot(PolynomialFit *poly, double solutionPosition, double solutionValue);
598
599 /**
600 * @brief draw a title on the focus plot
601 * @param title the title
602 */
603 void setTitle(const QString &title, bool plot = true);
604
605 /**
606 * @brief final updates after focus run comopletes on the focus plot
607 * @param title
608 * @param plot
609 */
610 void finalUpdates(const QString &title, bool plot = true);
611
612 /**
613 * @brief focuserTimedout responding to requests
614 * @param focuser
615 */
617
618 private:
619
620 QList<SSolver::Parameters> m_StellarSolverProfiles;
621 QString savedOptionsProfiles;
622 StellarSolverProfileEditor *optionsProfileEditor { nullptr };
623
624 // Connections
625 void initConnections();
626
627 // Settings
628
629 /**
630 * @brief Connect GUI elements to sync settings once updated.
631 */
632 void connectSyncSettings();
633 /**
634 * @brief Stop updating settings when GUI elements are updated.
635 */
636 void disconnectSyncSettings();
637 /**
638 * @brief loadSettings Load setting from Options and set them accordingly.
639 */
640 void loadGlobalSettings();
641
642 /**
643 * @brief checkMosaicMaskLimits Check if the maximum values configured
644 * for the aberration style mosaic tile sizes fit into the CCD frame size.
645 */
646 void checkMosaicMaskLimits();
647
648 /**
649 * @brief syncSettings When checkboxes, comboboxes, or spin boxes are updated, save their values in the
650 * global and per-train settings.
651 */
652 void syncSettings();
653
654 /**
655 * @brief syncControl Sync setting to widget. The value depends on the widget type.
656 * @param settings Map of all settings
657 * @param key name of widget to sync
658 * @param widget pointer of widget to set
659 * @return True if sync successful, false otherwise
660 */
661 bool syncControl(const QVariantMap &settings, const QString &key, QWidget * widget);
662
663 /**
664 * @brief settleSettings Run this function after timeout from debounce timer to update database
665 * and emit settingsChanged signal. This is required so we don't overload output.
666 */
667 void settleSettings();
668
669 /**
670 * @brief prepareGUI Perform once only GUI prep processing
671 */
672 void prepareGUI();
673
674 /**
675 * @brief setUseWeights sets the useWeights checkbox
676 */
677 void setUseWeights();
678
679 /**
680 * @brief setDenoise sets the focusDenoise checkbox
681 */
682 void setDenoise();
683
684 /**
685 * @brief setDonutBuster sets the donutBuster checkbox
686 */
687 void setDonutBuster();
688
689 /**
690 * @brief setScanForStartPos sets the scanForStartPos checkbox
691 */
692 void setScanForStartPos();
693
694 /**
695 * @brief addMissingStellarSolverProfiles
696 * @param profile to add
697 * @param profilePath file pathname
698 */
699 void addMissingStellarSolverProfile(const QString profilesPath, const QString profile);
700
701 /**
702 * @brief Perform the processing to abort an in-flight focus procedure
703 */
704 void processAbort();
705
706 // HFR Plot
707 void initPlots();
708
709 // Positions
710 void getAbsFocusPosition();
711 bool autoFocusChecks();
712 void autoFocusAbs();
713 void autoFocusLinear();
714 void autoFocusRel();
715
716 // events
717 void handleFocusButtonEvent();
718
719 // Linear does plotting differently from the rest.
720 void plotLinearFocus();
721
722 // Linear final updates to the curve
723 void plotLinearFinalUpdates();
724
725 // Launch the Aberation Inspector popup
726 void startAberrationInspector();
727
728 // Get the curve fitting goal based on how the algorithm is progressing
729 CurveFitting::FittingGoal getGoal(int numSteps);
730
731 /** @brief Helper function determining whether the focuser behaves like a position
732 * based one (vs. a timer based)
733 */
734 bool isPositionBased()
735 {
736 return (canAbsMove || canRelMove || (m_FocusAlgorithm == FOCUS_LINEAR) || (m_FocusAlgorithm == FOCUS_LINEAR1PASS));
737 }
738 void resetButtons();
739
740 /**
741 * @brief updateButtonColors Change button colors due Shift and Ctrl modifiers
742 */
743 void updateButtonColors(QPushButton *button, bool shift, bool ctrl);
744
745 /**
746 * @brief returns whether the Aberration Inspector can be used or not
747 * @return can / cant be started
748 */
749 bool canAbInsStart();
750 void stop(FocusState completionState = FOCUS_ABORTED);
751
752 void initView();
753 void initHelperObjects();
754
755 /** @brief Sets the plot vectors for Analyze after Autofocus. Used by Linear and Linear1Pass
756 */
757 void updatePlotPosition();
758
759 /** @brief Build the data string to send to Analyze
760 */
761 QString getAnalyzeData();
762
763 /**
764 * @brief prepareCapture Set common settings for capture for focus module
765 * @param targetChip target Chip
766 */
767 void prepareCapture(ISD::CameraChip *targetChip);
768
769 // HFR / FWHM
770 void setHFRComplete();
771
772 // Sets the star algorithm and enables/disables various UI inputs.
773 void setFocusDetection(StarAlgorithm starAlgorithm);
774
775 // Sets the algorithm and enables/disables various UI inputs.
776 void setFocusAlgorithm(Algorithm algorithm);
777
778 // Set the Auto Star & Box widgets
779 void setAutoStarAndBox();
780
781 void setCurveFit(CurveFitting::CurveFit curvefit);
782
783 void setStarMeasure(StarMeasure starMeasure);
784 void setStarPSF(StarPSF starPSF);
785 void setStarUnits(StarUnits starUnits);
786 void setWalk(FocusWalk focusWalk);
787 double calculateStarWeight(const bool useWeights, const std::vector<double> values);
788 bool boxOverlap(const QPair<int, int> b1Start, const QPair<int, int> b1End, const QPair<int, int> b2Start,
789 const QPair<int, int> b2End);
790 double getStarUnits(const StarMeasure starMeasure, const StarUnits starUnits);
791 // Calculate the CFZ of the current focus camera
792 double calcCameraCFZ();
793
794 // Calculate the CFZ from the screen parameters
795 void calcCFZ();
796
797 // Static data for filter's midpoint wavelength changed so update CFZ
798 void wavelengthChanged();
799
800 // Reset the CFZ parameters from the current Optical Train
801 void resetCFZToOT();
802
803 // Move the focuser in (negative) or out (positive amount).
804 bool changeFocus(int amount, bool updateDir = true);
805
806 // Start up capture, or occasionally move focuser again, after current focus-move accomplished.
807 void autoFocusProcessPositionChange(IPState state);
808
809 // For the Linear algorithm, which always scans in (from higher position to lower position)
810 // if we notice the new position is higher than the current position (that is, it is the start
811 // of a new scan), we adjust the new position to be several steps further out than requested
812 // and set focuserAdditionalMovement to the extra motion, so that after this motion completes
813 // we will then scan back in (back to the originally requested position). This "overscan dance" is done
814 // to reduce backlash on such movement changes and so that we've always focused in before capture.
815 int adjustLinearPosition(int position, int newPosition, int overscan, bool updateDir);
816
817 // Are we using a Star Measure that assumes a star field that requires star detection
818 bool isStarMeasureStarBased();
819
820 // Process the image to get star FWHMs
821 void getFWHM(const QList<Edge *> &stars, double *FWHM, double *weight);
822
823 // Process the image to get the Fourier Transform Power
824 // If tile = -1 use the whole image; if mosaicTile is specified use just that
825 void getFourierPower(double *fourierPower, double *weight, const int mosaicTile = -1);
826
827 // Process the image to get the blurryness factor
828 // If tile = -1 use the whole image; if mosaicTile is specified use just that
829 void getBlurriness(const StarMeasure starMeasure, const bool denoise, double *blurriness, double *weight,
830 const QRect &roi, const int mosaicTile = -1);
831
832 /**
833 * @brief syncTrackingBoxPosition Sync the tracking box to the current selected star center
834 */
835 void syncTrackingBoxPosition();
836
837 /** @internal Search for stars using the method currently configured, and return the consolidated HFR.
838 * @param image_data is the FITS frame to work with.
839 * @return the HFR of the star or field of stars in the frame, depending on the consolidation method, or -1 if it cannot be estimated.
840 */
841 void analyzeSources();
842
843 /** @internal Add a new star measure (HFR, FWHM, etc) for the current focuser position.
844 * @param newMeasure is the new measure (e.g. HFR, FWHM, etc) to consider for the current focuser position.
845 * @return true if a new sample is required, else false.
846 */
847 bool appendMeasure(double newMeasure);
848
849 /**
850 * @brief completeAutofocusProcedure finishes off autofocus and emits a message for other modules.
851 */
852 void completeFocusProcedure(FocusState completionState, AutofocusFailReason failCode, QString failCodeInfo = "",
853 bool plot = true);
854
855 /**
856 * @brief activities to be executed after the configured settling time
857 * @param completionState state the focuser completed with
858 * @param autoFocusUsed is autofocus running?
859 * @param buildOffsetsUsed is autofocus running as a result of build offsets
860 * @param failCode is the reason for the Autofocus failure
861 * @param failCodeInfo contains extra info about failCode
862 */
863 void settle(const FocusState completionState, const bool autoFocusUsed,
864 const bool buildOffsetsUsed, const AutofocusFailReason failCode, const QString failCodeInfo);
865
866 void setLastFocusTemperature();
867 void setLastFocusAlt();
868 bool findTemperatureElement(const QSharedPointer<ISD::GenericDevice> &device);
869
870 /**
871 * @brief reset Adaptive Focus parameters
872 * @param Adaptive Focus enabled
873 */
874 void resetAdaptiveFocus(bool enabled);
875
876 void setupOpticalTrainManager();
877 void initOpticalTrain();
878 void refreshOpticalTrain(const int id);
879
880 /**
881 * @brief set member valiables for the scope attached to the current Optical Train
882 * @param Optical Train scope parameters
883 * @param Optical Train reducer
884 */
885 void setScopeDetails(const QJsonObject &scope, const double reducer);
886
887 /**
888 * @brief handleFocusMotionTimeout When focuser is command to go to a target position, we expect to receive a notification
889 * that it arrived at the desired destination. If not, we command it again.
890 */
891 void handleFocusMotionTimeout();
892
893 /**
894 * @brief returns axis label based on measure selected
895 * @param starMeasure the star measure beuing used
896 */
897 QString getyAxisLabel(StarMeasure starMeasure);
898
899 /**
900 * @brief disable input widgets at the start of an AF run
901 * @param the widget to disable
902 * @param whether to disable at the widget level or disable all the children
903 */
904 void AFDisable(QWidget * widget, const bool children);
905
906 /**
907 * @brief returns whether the Gain input field is enabled outside of autofocus and
908 * whether logically is should be enabled during AF even though all input widgets are disabled
909 */
910 bool isFocusGainEnabled();
911
912 /**
913 * @brief returns whether the ISO input field is enabled outside of autofocus and
914 * whether logically is should be enabled during AF even though all input widgets are disabled
915 */
916 bool isFocusISOEnabled();
917
918 /**
919 * @brief returns whether the SubFrame input field is enabled outside of autofocus and
920 * whether logically is should be enabled during AF even though all input widgets are disabled
921 */
922 bool isFocusSubFrameEnabled();
923
924 /**
925 * @brief Save the focus frame for later dubugging
926 */
927 void saveFocusFrame();
928
929 /**
930 * @brief Initialise donut processing
931 */
932 void initDonutProcessing();
933
934 /**
935 * @brief Setup Linear Focuser
936 * @param initialPosition of the focuser
937 */
938 void setupLinearFocuser(int initialPosition);
939
940 /**
941 * @brief Initialise the Scan Start Position algorithm
942 * @param force Scan Start Pos
943 * @param startPosition
944 * @return whether Scan for Start Position was initiated
945 */
946 bool initScanStartPos(const bool force, const int initialPosition);
947
948 /**
949 * @brief Process the scan for the Autofocus starting position
950 */
951 void scanStartPos();
952
953 /**
954 * @brief Reset donut processing
955 */
956 void resetDonutProcessing();
957
958 /**
959 * @brief Adjust Autofocus capture exposure based on user settings when using Donut Buster
960 */
961 void donutTimeDilation();
962
963 /**
964 * @brief Filter out duplicate Autofocus requests
965 * @param autofocusReason reason for running this Autofocus
966 * @return true means do not run AF (previous run only just completed)
967 */
968 bool checkAFOptimisation(const AutofocusReason autofocusReason);
969
970 /// Focuser device needed for focus operation
971 ISD::Focuser *m_Focuser { nullptr };
972 int m_focuserId;
973 /// CCD device needed for focus operation
974 ISD::Camera *m_Camera { nullptr };
975 /// Optional device filter
976 ISD::FilterWheel *m_FilterWheel { nullptr };
977 /// Optional temperature source element
978 INumber *currentTemperatureSourceElement {nullptr};
979
980 /// Current filter position
981 int currentFilterPosition { -1 };
982 int fallbackFilterPosition { -1 };
983 /// True if we need to change filter position and wait for result before continuing capture
984 bool filterPositionPending { false };
985 bool fallbackFilterPending { false };
986
987 /// They're generic GDInterface because they could be either ISD::Camera or ISD::FilterWheel or ISD::Weather
988 QList<QSharedPointer<ISD::GenericDevice>> m_TemperatureSources;
989
990 /// Last Focus direction. Used by Iterative and Polynomial. NOTE: this does not take account of overscan
991 /// so, e.g. an outward move will always by FOCUS_OUT even though overscan will move back in
992 Direction m_LastFocusDirection { FOCUS_NONE };
993 /// Keep track of the last requested steps
994 uint32_t m_LastFocusSteps {0};
995 /// What type of focusing are we doing right now?
996 Type m_FocusType { FOCUS_MANUAL };
997 /// Focus HFR & Centeroid algorithms
998 StarAlgorithm m_FocusDetection { ALGORITHM_SEP };
999 /// Focus Process Algorithm
1000 Algorithm m_FocusAlgorithm { FOCUS_LINEAR1PASS };
1001 /// Curve fit
1002 CurveFitting::CurveFit m_CurveFit { CurveFitting::FOCUS_HYPERBOLA };
1003 /// Star measure to use
1004 StarMeasure m_StarMeasure { FOCUS_STAR_HFR };
1005 /// PSF to use
1006 StarPSF m_StarPSF { FOCUS_STAR_GAUSSIAN };
1007 /// Units to use when displaying HFR or FWHM
1008 StarUnits m_StarUnits { FOCUS_UNITS_PIXEL };
1009 /// Units to use when displaying HFR or FWHM
1010 FocusWalk m_FocusWalk { FOCUS_WALK_FIXED_STEPS };
1011 /// Are we minimising or maximising?
1012 CurveFitting::OptimisationDirection m_OptDir { CurveFitting::OPTIMISATION_MINIMISE };
1013 /// The type of statistics to use
1014 Mathematics::RobustStatistics::ScaleCalculation m_ScaleCalc { Mathematics::RobustStatistics::SCALE_SESTIMATOR };
1015
1016 /******************************************
1017 * "Measure" variables, HFR, FWHM, numStars
1018 ******************************************/
1019
1020 /// Current HFR value just fetched from FITS file
1021 double currentHFR { INVALID_STAR_MEASURE };
1022 double currentFWHM { INVALID_STAR_MEASURE };
1023 double currentNumStars { INVALID_STAR_MEASURE };
1024 double currentFourierPower { INVALID_STAR_MEASURE };
1025 double currentBlurriness { INVALID_STAR_MEASURE };
1026 double currentMeasure { INVALID_STAR_MEASURE };
1027 double currentWeight { 0 };
1028 /// Last HFR value recorded
1029 double lastHFR { 0 };
1030 /// If (currentHFR > deltaHFR) we start the autofocus process.
1031 double minimumRequiredHFR { INVALID_STAR_MEASURE };
1032 /// Maximum HFR recorded
1033 double maxHFR { 1 };
1034 /// Is HFR increasing? We're going away from the sweet spot! If HFRInc=1, we re-capture just to make sure HFR calculations are correct, if HFRInc > 1, we switch directions
1035 int HFRInc { 0 };
1036 /// If HFR decreasing? Well, good job. Once HFR start decreasing, we can start calculating HFR slope and estimating our next move.
1037 int HFRDec { 0 };
1038
1039 /****************************
1040 * Absolute position focusers
1041 ****************************/
1042 /// Absolute focus position
1043 int currentPosition { 0 };
1044 /// Motion state of the absolute focuser
1045 IPState currentPositionState {IPS_IDLE};
1046 /// flag if position or state has changed (to avoid too much logging)
1047 bool logPositionAndState {true};
1048 /// What was our position before we started the focus process?
1049 int initialFocuserAbsPosition { -1 };
1050 /// Pulse duration in ms for relative focusers that only support timers, or the number of ticks in a relative or absolute focuser
1051 int pulseDuration { 1000 };
1052 /// Does the focuser support absolute motion?
1053 bool canAbsMove { false };
1054 /// Does the focuser support relative motion?
1055 bool canRelMove { false };
1056 /// Does the focuser support timer-based motion?
1057 bool canTimerMove { false };
1058 /// Maximum range of motion for our lovely absolute focuser
1059 double absMotionMax { 0 };
1060 /// Minimum range of motion for our lovely absolute focuser
1061 double absMotionMin { 0 };
1062 /// How many iterations have we completed now in our absolute autofocus algorithm? We can't go forever
1063 int absIterations { 0 };
1064 /// Current image mask
1065 ImageMaskType m_currentImageMask = FOCUS_MASK_NONE;
1066
1067 /****************************
1068 * Misc. variables
1069 ****************************/
1070
1071 /// Are we tring to abort Autofocus?
1072 bool m_abortInProgress { false };
1073 /// Are we in the process of capturing an image?
1074 bool m_captureInProgress { false };
1075 /// Are we in the process of star detection?
1076 bool m_starDetectInProgress { false };
1077 // Was the frame modified by us? Better keep track since we need to return it to its previous state once we are done with the focus operation.
1078 //bool frameModified;
1079 /// Was the modified frame subFramed?
1080 bool subFramed { false };
1081 /// If the autofocus process fails, let's not ruin the capture session probably taking place in the next tab. Instead, we should restart it and try again, but we keep count until we hit MAXIMUM_RESET_ITERATIONS
1082 /// and then we truly give up.
1083 int resetFocusIteration { 0 };
1084 /// Which filter must we use once the autofocus process kicks in?
1085 int lockedFilterIndex { -1 };
1086 /// Keep track of what we're doing right now
1087 bool inAutoFocus { false };
1088 bool inFocusLoop { false };
1089 bool inScanStartPos { false };
1090 //bool inSequenceFocus { false };
1091 /// Keep track of request to retry or abort an AutoFocus run after focus position has been reset
1092 /// RESTART_NONE = normal operation, no restart
1093 /// RESTART_NOW = restart the autofocus routine
1094 /// RESTART_ABORT = when autofocus has been tried MAXIMUM_RESET_ITERATIONS times, abort the routine
1095 typedef enum { RESTART_NONE = 0, RESTART_NOW, RESTART_ABORT } FocusRestartState;
1096 FocusRestartState m_RestartState { RESTART_NONE };
1097 /// Did we reverse direction?
1098 bool reverseDir { false };
1099 /// Did the user or the auto selection process finish selecting our focus star?
1100 bool starSelected { false };
1101 /// Adjust the focus position to a target value
1102 bool inAdjustFocus { false };
1103 /// Build offsets is a special case of the Autofocus run
1104 bool inBuildOffsets { false };
1105 /// AF Optimise is a special case of the Autofocus run
1106 bool inAFOptimise { false };
1107 // Target frame dimensions
1108 //int fx,fy,fw,fh;
1109 /// If HFR=-1 which means no stars detected, we need to decide how many times should the re-capture process take place before we give up or reverse direction.
1110 int noStarCount { 0 };
1111 /// Track which upload mode the CCD is set to. If set to UPLOAD_LOCAL, then we need to switch it to UPLOAD_CLIENT in order to do focusing, and then switch it back to UPLOAD_LOCAL
1112 ISD::Camera::UploadMode rememberUploadMode { ISD::Camera::UPLOAD_CLIENT };
1113 /// Star measure (e.g. HFR, FWHM, etc) values for captured frames before averages
1114 QVector<double> starMeasureFrames;
1115 // Camera Fast Exposure
1116 bool m_RememberCameraFastExposure = { false };
1117 // Future Watch
1118 QFutureWatcher<bool> m_StarFinderWatcher;
1119 // R2 as a measure of how well the curve fits the datapoints. Passed to the V-curve graph for display
1120 double R2 = 0;
1121 // Counter to retry the auto focus run if the R2Limit has not been reached
1122 int m_R2Retries = 0;
1123 // Counter to retry starting focus operation (autofocus, adjust focus, etc) if the focuser is still active
1124 int m_StartRetries = 0;
1125 // Reason code for the Autofocus run - passed to Analyze
1126 AutofocusReason m_AutofocusReason = AutofocusReason::FOCUS_NONE;
1127 // Extra information about m_AutofocusReason
1128 QString m_AutofocusReasonInfo;
1129 // Autofocus run number - to help with debugging logs
1130 int m_AFRun = 0;
1131 // Rerun flag indicating a rerun due to AF failing
1132 bool m_AFRerun = false;
1133
1134 ITextVectorProperty *filterName { nullptr };
1135 INumberVectorProperty *filterSlot { nullptr };
1136
1137 // Holds the superset of text values in combo-boxes that can have restricted options
1138 QStringList m_StarMeasureText;
1139 QStringList m_CurveFitText;
1140 QStringList m_FocusWalkText;
1141
1142 // Holds the enabled state of widgets that is used to active functionality in focus
1143 // during Autofocus when the input interface is disabled
1144 bool m_FocusGainAFEnabled { false };
1145 bool m_FocusISOAFEnabled { false };
1146 bool m_FocusSubFrameAFEnabled { false };
1147
1148 /****************************
1149 * Plot variables
1150 ****************************/
1151
1152 /// Plot minimum positions
1153 double minPos { 1e6 };
1154 /// Plot maximum positions
1155 double maxPos { 0 };
1156 /// V curve plot points
1157 QVector<double> plot_position, plot_value, plot_weight;
1158 QVector<bool> plot_outlier;
1159 bool isVShapeSolution = false;
1160
1161 /// State
1162 FocusState m_state { Ekos::FOCUS_IDLE };
1163 FocusState m_pendingState { Ekos::FOCUS_IDLE };
1164 FocusState state() const
1165 {
1166 return m_state;
1167 }
1168 void setState(FocusState newState, const bool update = true);
1169
1170 bool isBusy()
1171 {
1172 return m_state == FOCUS_WAITING || m_state == FOCUS_PROGRESS || m_state == FOCUS_FRAMING
1173 || m_state == FOCUS_CHANGING_FILTER;
1174 }
1175
1176 /// CCD Chip frame settings
1177 QMap<ISD::CameraChip *, QVariantMap> frameSettings;
1178
1179 /// Selected star coordinates
1180 QVector3D starCenter;
1181
1182 // Remember last star center coordinates in case of timeout in manual select mode
1183 QVector3D rememberStarCenter;
1184
1185 /// Focus Frame
1186 QSharedPointer<FITSView> m_FocusView;
1187
1188 /// Star Select Timer
1189 QTimer waitStarSelectTimer;
1190
1191 /// FITS Viewer in case user want to display in it instead of internal view
1192 QSharedPointer<FITSViewer> fv;
1193
1194 /// Track star position and HFR to know if we're detecting bogus stars due to detection algorithm false positive results
1195 QVector<QVector3D> starsHFR;
1196
1197 /// Relative Profile
1198 FocusProfilePlot *profilePlot { nullptr };
1199 QDialog *profileDialog { nullptr };
1200
1201 /// Polynomial fitting.
1202 std::unique_ptr<PolynomialFit> polynomialFit;
1203
1204 // Curve fitting for focuser movement.
1205 std::unique_ptr<CurveFitting> curveFitting;
1206
1207 // Curve fitting for stars.
1208 std::unique_ptr<CurveFitting> starFitting;
1209
1210 // FWHM processing.
1211 std::unique_ptr<FocusFWHM> focusFWHM;
1212
1213 // Fourier Transform power processing.
1214 std::unique_ptr<FocusFourierPower> focusFourierPower;
1215
1216#if defined(HAVE_OPENCV)
1217 // Blurriness processing.
1218 std::unique_ptr<FocusBlurriness> focusBlurriness;
1219#endif
1220
1221 // Adaptive Focus processing.
1222 std::unique_ptr<AdaptiveFocus> adaptFocus;
1223
1224 // Focus Advisor processing.
1225 std::unique_ptr<FocusAdvisor> focusAdvisor;
1226
1227 // Capture timers
1228 QTimer captureTimer;
1229 QTimer captureTimeout;
1230 uint8_t captureTimeoutCounter { 0 };
1231 uint8_t m_MissingCameraCounter { 0 };
1232 uint8_t captureFailureCounter { 0 };
1233
1234 // Gain Control
1235 double GainSpinSpecialValue { INVALID_VALUE };
1236
1237 // Focus motion timer.
1238 QTimer m_FocusMotionTimer;
1239 uint8_t m_FocusMotionTimerCounter { 0 };
1240
1241 // Focuser reconnect counter
1242 uint8_t m_FocuserReconnectCounter { 0 };
1243
1244 // Set m_DebugFocuser = true to simulate a focuser failure
1245 bool m_DebugFocuser { false };
1246 uint16_t m_DebugFocuserCounter { 0 };
1247
1248 // Guide Suspend
1249 bool m_GuidingSuspended { false };
1250
1251 // Data
1252 QSharedPointer<FITSData> m_ImageData;
1253
1254 // Linear focuser.
1255 std::unique_ptr<FocusAlgorithmInterface> linearFocuser;
1256 int focuserAdditionalMovement { 0 };
1257 bool focuserAdditionalMovementUpdateDir { true };
1258 int linearRequestedPosition { 0 };
1259
1260 bool hasDeviation { false };
1261
1262 //double observatoryTemperature { INVALID_VALUE };
1263 double m_LastSourceAutofocusTemperature { INVALID_VALUE };
1264 QSharedPointer<ISD::GenericDevice> m_LastSourceDeviceAutofocusTemperature;
1265 //TemperatureSource lastFocusTemperatureSource { NO_TEMPERATURE };
1266 double m_LastSourceAutofocusAlt { INVALID_VALUE };
1267
1268 // Mount altitude value for logging
1269 double mountAlt { INVALID_VALUE };
1270
1271 static constexpr uint8_t MAXIMUM_FLUCTUATIONS {10};
1272
1273 QVariantMap m_Settings;
1274 QVariantMap m_GlobalSettings;
1275
1276 // Dark Processor
1277 QPointer<DarkProcessor> m_DarkProcessor;
1278
1279 QSharedPointer<FilterManager> m_FilterManager;
1280
1281 // Maintain a list of disabled widgets when Autofocus is running that can be restored at the end of the run
1282 QVector <QWidget *> disabledWidgets;
1283
1284 // Scope parameters of the active optical train
1285 double m_Aperture = 0.0f;
1286 double m_FocalLength = 0.0f;
1287 double m_FocalRatio = 0.0f;
1288 double m_Reducer = 0.0f;
1289 double m_CcdPixelSizeX = 0.0f;
1290 int m_CcdWidth = 0;
1291 int m_CcdHeight = 0;
1292 QString m_ScopeType;
1293
1294 QString m_opsDialogName;
1295
1296 // Settings popup
1297 //std::unique_ptr<Ui::Settings> m_SettingsUI;
1298 //QPointer<QDialog> m_SettingsDialog;
1299 OpsFocusSettings *m_OpsFocusSettings { nullptr };
1300
1301 // Process popup
1302 //std::unique_ptr<Ui::Process> m_ProcessUI;
1303 //QPointer<QDialog> m_ProcessDialog;
1304 OpsFocusProcess *m_OpsFocusProcess { nullptr };
1305
1306 // Mechanics popup
1307 //std::unique_ptr<Ui::Mechanics> m_MechanicsUI;
1308 //QPointer<QDialog> m_MechanicsDialog;
1309 OpsFocusMechanics *m_OpsFocusMechanics { nullptr };
1310
1311 // CFZ popup
1312 std::unique_ptr<Ui::focusCFZDialog> m_CFZUI;
1313 QPointer<QDialog> m_CFZDialog;
1314
1315 // CFZ
1316 double m_cfzSteps = 0.0f;
1317
1318 // Aberration Inspector
1319 void calculateAbInsData();
1320 bool m_abInsOn = false;
1321 int m_abInsRun = 0;
1322 QVector<int> m_abInsPosition;
1323 QVector<QVector<double>> m_abInsMeasure;
1324 QVector<QVector<double>> m_abInsWeight;
1325 QVector<QVector<int>> m_abInsNumStars;
1326 QVector<QPoint> m_abInsTileCenterOffset;
1327
1328 QTimer m_DebounceTimer;
1329
1330 // Donut Buster
1331 double m_donutOrigExposure = 0.0;
1332 QVector<int> m_scanPosition;
1333 QVector<double> m_scanMeasure;
1334 QString m_AFfilter = NULL_FILTER;
1335};
1336
1337}
The DarkProcessor class.
Interface intender for autofocus algorithms.
void drawPolynomial(PolynomialFit *poly, bool isVShape, bool activate, bool plot=true)
draw the approximating polynomial into the HFR V-graph
void toggleVideo(bool enabled)
toggleVideo Turn on and off video streaming if supported by the camera.
Definition focus.cpp:5709
void checkTemperatureSource(const QString &name=QString())
Check temperature source and make sure information is updated accordingly.
Definition focus.cpp:561
Q_SCRIPTABLE bool setFilter(const QString &filter)
DBUS interface function.
Definition focus.cpp:649
void startFraming()
startFraming Begins continuous capture of the CCD and calculates HFR every frame.
Definition focus.cpp:4740
void newHFRPlotPosition(double pos, double hfr, double sigma, bool outlier, int pulseDuration, bool plot=true)
new HFR plot position with sigma
void redrawHFRPlot(PolynomialFit *poly, double solutionPosition, double solutionValue)
redraw the entire HFR plot
Q_SCRIPTABLE double getHFR()
DBUS interface function.
Definition focus.h:130
void loadStellarSolverProfiles()
setWeatherData Updates weather data that could be used to extract focus temperature from observatory ...
Definition focus.cpp:241
Q_SCRIPTABLE Q_NOREPLY void setBinning(int binX, int binY)
DBUS interface function.
Definition focus.cpp:5247
void clearDataPoints()
clearDataPoints Remove all data points from HFR plots
Definition focus.cpp:3243
Q_SCRIPTABLE QString camera()
DBUS interface function.
Definition focus.cpp:344
Q_SCRIPTABLE QString focuser()
DBUS interface function.
Definition focus.cpp:729
Q_SCRIPTABLE Q_NOREPLY void setAutoStarEnabled(bool enable)
DBUS interface function.
Definition focus.cpp:5253
void runAutoFocus(const AutofocusReason autofocusReason, const QString &reasonInfo)
Run the autofocus process for the currently selected filter.
Definition focus.cpp:1009
Q_SCRIPTABLE QString filterWheel()
DBUS interface function.
Definition focus.cpp:640
void updateProperty(INDI::Property prop)
updateProperty Read focus number properties of interest as they arrive from the focuser driver and pr...
Definition focus.cpp:4309
void focusStarSelected(int x, int y)
focusStarSelected The user selected a focus star, save its coordinates and subframe it if subframing ...
Definition focus.cpp:4973
void reconnectFocuser(const QString &focuser)
reconnectFocuser Add focuser to the list of available focusers.
Definition focus.cpp:2013
bool setFocuser(ISD::Focuser *device)
addFocuser Add focuser to the list of available focusers.
Definition focus.cpp:699
void resetFocuser()
Move the focuser to the initial focus position.
Definition focus.cpp:2654
void processData(const QSharedPointer< FITSData > &data)
newFITS A new FITS blob is received by the CCD driver.
Definition focus.cpp:2039
void focuserTimedout(const QString &focuser)
focuserTimedout responding to requests
void initHFRPlot(QString str, double starUnits, bool minimum, bool useWeights, bool showPosition)
initialize the HFR V plot
void selectFocusStarFraction(double x, double y)
selectFocusStarFraction Select the focus star based by fraction of the overall size.
Definition focus.cpp:4960
void appendLogText(const QString &logtext)
setFocusStatus Upon completion of the focusing process, set its status (fail or pass) and reset focus...
Definition focus.cpp:4725
Q_SCRIPTABLE bool useFullField()
DBUS interface function.
Definition focus.h:122
void adaptiveFocus()
adaptiveFocus moves the focuser between subframes to stay at focus
Definition focus.cpp:983
Q_SCRIPTABLE Q_NOREPLY void resetFrame()
DBUS interface function.
Definition focus.cpp:308
void meridianFlipStarted()
React when a meridian flip has been started.
Definition focus.cpp:1514
void processTemperatureSource(INDI::Property prop)
processTemperatureSource Updates focus temperature source.
Definition focus.cpp:916
void removeDevice(const QSharedPointer< ISD::GenericDevice > &deviceRemoved)
removeDevice Remove device from Focus module
Definition focus.cpp:5470
void syncCameraInfo()
syncCameraInfo Read current CCD information and update settings accordingly.
Definition focus.cpp:463
void checkFilter()
Check Filter and make sure information is updated accordingly.
Definition focus.cpp:665
void drawCFZ(double minPosition, double minValue, int m_cfzSteps, bool plt)
Draw Critical Focus Zone on graph.
void finalUpdates(const QString &title, bool plot=true)
final updates after focus run comopletes on the focus plot
void minimumFound(double solutionPosition, double solutionValue, bool plot=true)
Focus solution with minimal HFR found.
void checkStopFocus(bool abort)
checkStopFocus Perform checks before stopping the autofocus operation.
Definition focus.cpp:1468
void checkFocuser()
Check Focuser and make sure information is updated accordingly.
Definition focus.cpp:737
Q_SCRIPTABLE Q_NOREPLY void setExposure(double value)
DBUS interface function.
Definition focus.cpp:5242
void setTitle(const QString &title, bool plot=true)
draw a title on the focus plot
void drawCurve(CurveFitting *curve, bool isVShape, bool activate, bool plot=true)
draw the curve into the HFR V-graph
QStringList getStellarSolverProfiles()
getStellarSolverProfiles
Definition focus.cpp:292
Q_SCRIPTABLE Q_NOREPLY void setAutoFocusParameters(int boxSize, int stepSize, int maxTravel, double tolerance)
DBUS interface function.
Definition focus.cpp:5263
Q_SCRIPTABLE Ekos::FocusState status()
DBUS interface function.
Definition focus.h:183
bool setFilterWheel(ISD::FilterWheel *device)
addFilter Add filter to the list of available filters.
Definition focus.cpp:501
Q_SCRIPTABLE bool canAutoFocus()
DBUS interface function.
Definition focus.h:114
void updateTemperatureSources(const QList< QSharedPointer< ISD::GenericDevice > > &temperatureSources)
updateTemperatureSources Update list of available temperature sources.
Definition focus.cpp:542
Q_SCRIPTABLE Q_NOREPLY void setAutoSubFrameEnabled(bool enable)
DBUS interface function.
Definition focus.cpp:5258
bool setCamera(ISD::Camera *device)
Add CCD to the list of available CCD.
Definition focus.cpp:846
void syncCCDControls()
Update camera controls like Gain, ISO, Offset...etc.
Definition focus.cpp:411
void checkCamera()
Check CCD and make sure information is updated accordingly.
Definition focus.cpp:352
void selectImageMask()
setImageMask Select the currently active image mask filtering the stars relevant for focusing
Definition focus.cpp:1976
void adaptiveFocusComplete(const QString &filter, double temperature, double tempTicks, double altitude, double altTicks, int prevPosError, int thisPosError, int totalTicks, int position, bool focuserMoved)
Signal Analyze that an Adaptive Focus iteration is complete.
Primary window to view monochrome and color FITS images.
Definition fitsviewer.h:54
CameraChip class controls a particular chip in camera.
Camera class controls an INDI Camera device.
Definition indicamera.h:45
Focuser class handles control of INDI focuser devices.
Definition indifocuser.h:21
Q_SCRIPTABLE Q_NOREPLY void checkFocus(double requiredHFR)
checkFocus Given the minimum required HFR, check focus and calculate HFR.
Definition focus.cpp:5111
Q_SCRIPTABLE bool focusOut(int ms=-1, int speedFactor=1)
DBUS interface function.
Definition focus.cpp:1823
Q_SCRIPTABLE Q_NOREPLY void capture(double settleTime=0.0)
DBUS interface function.
Definition focus.cpp:1625
Q_SCRIPTABLE bool focusIn(int ms=-1, int speedFactor=1)
DBUS interface function.
Definition focus.cpp:1799
Q_SCRIPTABLE Q_NOREPLY void start()
DBUS interface function.
Definition focus.cpp:1003
Q_SCRIPTABLE Q_NOREPLY void abort()
DBUS interface function.
Definition focus.cpp:1528
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:83
Q_OBJECTQ_OBJECT
const QObjectList & children() const const
QWidget(QWidget *parent, Qt::WindowFlags f)
void update()
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:57:24 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.