Skip to content

Commit 41fddf6

Browse files
committed
Throw an error when the MorphableModel version being loaded is neither 1, 2, 3 or 4
The error is also different from the error when a model of version <1 is loaded. This might help diagnose problems like #213.
1 parent 505f53f commit 41fddf6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

include/eos/morphablemodel/MorphableModel.hpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,8 @@ class MorphableModel
482482
*
483483
* @param[in] archive The archive to serialise to (or to serialise from).
484484
* @param[in] version Version number of the archive.
485-
* @throw std::runtime_error When the model file doesn't have the most recent version (=1).
485+
* @throw std::runtime_error When the model file has version <1 (the very old cv::Mat matrix format) or an
486+
* unknown value (e.g. >4).
486487
*/
487488
template <class Archive>
488489
void serialize(Archive& archive, const std::uint32_t version)
@@ -503,11 +504,15 @@ class MorphableModel
503504
{
504505
archive(CEREAL_NVP(shape_model), CEREAL_NVP(color_model), CEREAL_NVP(expression_model),
505506
CEREAL_NVP(landmark_definitions), CEREAL_NVP(texture_coordinates));
506-
} else
507+
} else if (version == 4)
507508
{
508509
archive(CEREAL_NVP(shape_model), CEREAL_NVP(color_model), CEREAL_NVP(expression_model),
509510
CEREAL_NVP(landmark_definitions), CEREAL_NVP(texture_coordinates),
510511
CEREAL_NVP(texture_triangle_indices));
512+
} else
513+
{
514+
throw std::runtime_error("The model file you are trying to load has an unknown version number: " +
515+
std::to_string(version));
511516
}
512517
};
513518
};

0 commit comments

Comments
 (0)