1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
#include "testtwostellarsolvers.h"
//Includes for this project
#include "structuredefinitions.h"
#include "stellarsolver.h"
#include "ssolverutils/fileio.h"
TestTwoStellarSolvers::TestTwoStellarSolvers()
{
//Setting up simultaneous solvers. Not usually recommended, but it does work.
solversRunning = 4;
setupStellarSolver("randomsky.fits");
setupStellarSolver("pleiades.jpg");
setupStellarSolver("randomsky.fits");
setupStellarSolver("pleiades.jpg");
extractorsRunning = 4;
setupStellarStarExtraction("randomsky.fits");
setupStellarStarExtraction("pleiades.jpg");
setupStellarStarExtraction("randomsky.fits");
setupStellarStarExtraction("pleiades.jpg");
}
void TestTwoStellarSolvers::setupStellarSolver(QString fileName)
{
fileio imageLoader;
if(!imageLoader.loadImage(fileName))
{
printf("Error in loading file");
exit(1);
}
FITSImage::Statistic stats = imageLoader.getStats();
uint8_t *imageBuffer = imageLoader.getImageBuffer();
StellarSolver *stellarSolver = new StellarSolver(stats, imageBuffer, nullptr);
stellarSolver->setProperty("ExtractorType", SSolver::EXTRACTOR_INTERNAL);
stellarSolver->setProperty("SolverType", SSolver::SOLVER_STELLARSOLVER);
stellarSolver->setProperty("ProcessType", SSolver::SOLVE);
stellarSolver->setParameterProfile(SSolver::Parameters::SINGLE_THREAD_SOLVING);
stellarSolver->setIndexFolderPaths(QStringList() << "astrometry");
stellarSolver->setLogLevel(SSolver::LOG_ALL);
if(imageLoader.position_given)
{
printf("Using Position: %f hours, %f degrees\n", imageLoader.ra, imageLoader.dec);
stellarSolver->setSearchPositionRaDec(imageLoader.ra, imageLoader.dec);
}
if(imageLoader.scale_given)
{
stellarSolver->setSearchScale(imageLoader.scale_low, imageLoader.scale_high, imageLoader.scale_units);
printf("Using Scale: %f to %f, %s\n", imageLoader.scale_low, imageLoader.scale_high, SSolver::getScaleUnitString(imageLoader.scale_units).toUtf8().data());
}
printf("Starting to solve. . .\n");
fflush( stdout );
connect(stellarSolver, &StellarSolver::finished, this, &TestTwoStellarSolvers::stellarSolverFinished);
connect(stellarSolver, &StellarSolver::logOutput, this, &TestTwoStellarSolvers::logOutput);
stellarSolver->start();
}
void TestTwoStellarSolvers::setupStellarStarExtraction(QString fileName)
{
fileio imageLoader;
if(!imageLoader.loadImage(fileName))
{
printf("Error in loading file");
exit(1);
}
FITSImage::Statistic stats = imageLoader.getStats();
uint8_t *imageBuffer = imageLoader.getImageBuffer();
StellarSolver *stellarSolver = new StellarSolver(stats, imageBuffer, nullptr);
stellarSolver->setProperty("ExtractorType", SSolver::EXTRACTOR_INTERNAL);
stellarSolver->setProperty("ProcessType", SSolver::EXTRACT_WITH_HFR);
printf("Starting to extract. . .\n");
fflush( stdout );
connect(stellarSolver, &StellarSolver::finished, this, &TestTwoStellarSolvers::stellarExtractorFinished);
connect(stellarSolver, &StellarSolver::logOutput, this, &TestTwoStellarSolvers::logOutput);
stellarSolver->start();
}
void TestTwoStellarSolvers::stellarSolverFinished()
{
solversRunning --;
StellarSolver *reportingSolver = qobject_cast<StellarSolver*>(sender());
FITSImage::Solution solution = reportingSolver->getSolution();
printf("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n");
printf("Field center: (RA,Dec) = (%f, %f) deg.\n", solution.ra, solution.dec);
printf("Field size: %f x %f arcminutes\n", solution.fieldWidth, solution.fieldHeight);
printf("Pixel Scale: %f\"\n", solution.pixscale);
printf("Field rotation angle: up is %f degrees E of N\n", solution.orientation);
printf("Field parity: %s\n", FITSImage::getParityText(solution.parity).toUtf8().data());
fflush( stdout );
if(solversRunning == 0 && extractorsRunning == 0)
exit(0);
}
void TestTwoStellarSolvers::stellarExtractorFinished()
{
extractorsRunning --;
StellarSolver *reportingSolver = qobject_cast<StellarSolver*>(sender());
QList<FITSImage::Star> starList = reportingSolver->getStarList();
printf("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n");
printf("Stars found: %u\n", starList.count());
for(int i=0; i < starList.count(); i++)
{
FITSImage::Star star = starList.at(i);
printf("Star #%u: (%f x, %f y), mag: %f, peak: %f, hfr: %f \n", i, star.x, star.y, star.mag, star.peak, star.HFR);
}
if(solversRunning == 0 && extractorsRunning == 0)
exit(0);
}
void TestTwoStellarSolvers::logOutput(QString text)
{
printf("%s \n", text.toUtf8().data());
}
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
#if defined(__linux__)
setlocale(LC_NUMERIC, "C");
#endif
TestTwoStellarSolvers *demo = new TestTwoStellarSolvers();
app.exec();
delete demo;
return 0;
}
|