1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-04-05 09:35:54 +01:00

sample-combine fix

This commit is contained in:
Antonin Portelli 2017-07-09 14:31:14 +01:00
parent e43a7c6d0b
commit 6906b0c00d

View File

@ -69,6 +69,7 @@ void loadAndCheck(vector<DMatSample> &sample, const vector<string> &fileName)
sample[i] = Io::load<DMatSample>(fileName[i]);
if (!gotSize)
{
nSample = sample[i].size();
nRow = sample[i][central].rows();
nCol = sample[i][central].cols();
gotSize = true;
@ -78,10 +79,6 @@ void loadAndCheck(vector<DMatSample> &sample, const vector<string> &fileName)
{
failed.insert(i);
}
if (i == 0)
{
nSample = sample[i].size();
}
}
for (unsigned int i: failed)
{