| 326 | } |
| 327 | |
| 328 | unsigned long num_features ( |
| 329 | ) const |
| 330 | { |
| 331 | unsigned long num = 0; |
| 332 | for (unsigned long iter = 0; iter < forests.size(); ++iter) |
| 333 | for (unsigned long i = 0; i < forests[iter].size(); ++i) |
| 334 | num += forests[iter][i].num_leaves(); |
| 335 | return num; |
| 336 | } |
| 337 | |
| 338 | template <typename image_type> |
| 339 | full_object_detection operator()( |
nothing calls this directly
no test coverage detected