Commit e08793ff authored by Patrik Huber's avatar Patrik Huber

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
......@@ -51,6 +51,7 @@ cv::Mat unnormalise_pca_basis(cv::Mat normalisedBasis, cv::Mat eigenvalues);
class PcaModel
{
public:
PcaModel() {}; // workaround for a VS2015 RC bug. Change to '=default' in RTM.
/**
* Construct a PCA model from given mean, normalised PCA basis, eigenvalues
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment