1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-22 07:31:26 +08:00

Fix win build errors

This commit is contained in:
Vlad Shakhuro
2014-08-13 14:22:04 +04:00
parent 95548c9864
commit 4834c0c87f
6 changed files with 10 additions and 24 deletions

View File

@@ -92,20 +92,6 @@ static int count(const Mat_<int> &m, int elem)
return res;
}
void write(FileStorage& fs, String&, const WaldBoost& waldboost)
{
waldboost.write(fs);
}
void read(const FileNode& node, WaldBoost& w,
const WaldBoost& default_value)
{
if( node.empty() )
w = default_value;
else
w.read(node);
}
void WaldBoostImpl::read(const FileNode& node)
{
FileNode params = node["waldboost_params"];