diff --git a/kstars/ekos/align/optionsprofileeditor.cpp b/kstars/ekos/align/optionsprofileeditor.cpp index 394044306484c80b221fc58c0441b44a8c67bd24..ac8281873af5bfdbb469a82782e740fd6ae4f58f 100644 --- a/kstars/ekos/align/optionsprofileeditor.cpp +++ b/kstars/ekos/align/optionsprofileeditor.cpp @@ -169,6 +169,7 @@ SSolver::Parameters OptionsProfileEditor::getSettingsFromUI() params.solverTimeLimit = solverTimeLimit->text().toInt(); params.resort = resort->isChecked(); + params.autoDownsample = autoDownsample->isChecked(); params.downsample = downsample->value(); params.search_radius = radius->text().toDouble(); @@ -204,6 +205,7 @@ void OptionsProfileEditor::sendSettingsToUI(SSolver::Parameters a) //Astrometry Settings + autoDownsample->setChecked(a.autoDownsample); downsample->setValue(a.downsample); inParallel->setChecked(a.inParallel); multiAlgo->setCurrentIndex(a.multiAlgorithm); diff --git a/kstars/ekos/align/optionsprofileeditor.ui b/kstars/ekos/align/optionsprofileeditor.ui index 4de2495991951864b8a2e0fab63817e3c596960b..6074ce889ef7ec4bff2295635105b9ff385dbbf2 100644 --- a/kstars/ekos/align/optionsprofileeditor.ui +++ b/kstars/ekos/align/optionsprofileeditor.ui @@ -557,24 +557,17 @@ Astrometry Parameters - + Maximum time - - - - Min Degree Width - - - - + - Factor to use for downsampling the image before SEP for plate solving. Can speed it up. Note: This should ONLY be used for SEP used for solving, not for Sextraction + Factor to use for downsampling the image before SEP for plate solving. Can speed it up. 1 @@ -584,24 +577,21 @@ - - - - Whether to resort the stars based on magnitude. NOTE: This is REQUIRED to be true for the filters above - + + - Resort + Search Radius - + DownSample - + Algorithm for running multiple threads on possibly multiple cores to solve faster @@ -631,24 +621,37 @@ - - + + + + If no scale estimate is given, this is the limit on the maximum field width in degrees. + - Parallel Algorithm + 180 - - + + - Give up solving after the specified number of seconds of CPU time + Only search in indexes within 'radius' of the field center given by RA and DEC - 600 + 15 - + + + + Whether to resort the stars based on magnitude. NOTE: This is REQUIRED to be true for the filters above + + + Resort + + + + If no scale estimate is given, this is the limit on the minimum field width in degrees. @@ -658,41 +661,51 @@ - - + + - Max Degree Width + Min Degree Width - - - - If no scale estimate is given, this is the limit on the maximum field width in degrees. + + + + Parallel Algorithm + + + + - 180 + Max Degree Width - - + + + + Give up solving after the specified number of seconds of CPU time + - Search Radius + 600 - - + + - Only search in indexes within 'radius' of the field center given by RA and DEC + Automatically Downsamples the image based on the image size - 15 + Auto DownSample + + + true - + Check the indices in parallel by loading them simultaneously into memory? If the indices you are using take less than 2 GB of space, and you have at least as much physical memory as indices, you want this enabled.