Skip to content
Snippets Groups Projects
Commit e08793ff authored by Patrik Huber's avatar Patrik Huber
Browse files

Added a default ctor to PcaModel

In preparation for the serialisation - and declared it empty, to work around a VS bug with =default
parent 93134884
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,8 @@ cv::Mat unnormalise_pca_basis(cv::Mat normalisedBasis, cv::Mat eigenvalues); ...@@ -51,7 +51,8 @@ cv::Mat unnormalise_pca_basis(cv::Mat normalisedBasis, cv::Mat eigenvalues);
class PcaModel class PcaModel
{ {
public: public:
PcaModel() {}; // workaround for a VS2015 RC bug. Change to '=default' in RTM.
/** /**
* Construct a PCA model from given mean, normalised PCA basis, eigenvalues * Construct a PCA model from given mean, normalised PCA basis, eigenvalues
* and triangle list. * and triangle list.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment