1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-17 07:04:18 +08:00

Add bg_per_image param

This commit is contained in:
Vlad Shakhuro
2014-07-31 19:00:31 +04:00
parent 319b25ee85
commit 5ff271efce
3 changed files with 7 additions and 7 deletions

View File

@@ -159,9 +159,10 @@ struct CV_EXPORTS ICFDetectorParams
int weak_count;
int model_n_rows;
int model_n_cols;
int bg_per_image;
ICFDetectorParams(): feature_count(UINT_MAX), weak_count(100),
model_n_rows(40), model_n_cols(40)
model_n_rows(56), model_n_cols(56), bg_per_image(5)
{}
};