diff --git a/EyeRecToo/src/GazeEstimation.cpp b/EyeRecToo/src/GazeEstimation.cpp index 320767109b4f70ee5db6e73f96c668f9e9a35966..0d65d86ae82c999f57b01b99a6ee91cb935a70e1 100644 --- a/EyeRecToo/src/GazeEstimation.cpp +++ b/EyeRecToo/src/GazeEstimation.cpp @@ -13,6 +13,12 @@ GazeEstimation::GazeEstimation(QObject* parent) , lastOverlayIdx(0) , settings(nullptr) { + availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXYY)); + availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY)); + //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY)); + //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XXYY)); + //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX)); + //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXX_YYY)); availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXYY)); availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY)); @@ -21,13 +27,6 @@ GazeEstimation::GazeEstimation(QObject* parent) //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX)); //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXX_YYY)); - availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXYY)); - availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY)); - //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY)); - //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XXYY)); - //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX)); - //availableGazeEstimationMethods.push_back(make_shared(PolyFit::POLY_X_Y_XY_XX_YY_XYY_YXX_XXX_YYY)); - availableGazeEstimationMethods.push_back(make_shared()); // Deactivated until the eye context gets integrated