Wrong CV_ASSERT when computing descriptors in bagofwords (Bug #3543)
Description
The CV_ASSERT in root/modules/features2d/src/bagofwords.cpp (line 175). The current checking is CV_Assert( vocabulary.empty() != false ) when it should be CV_ASSERT( !vocabulary.empty() )
Associated revisions
Merge pull request #3543 from MatMoore:2.4
History
Updated by Yash Vadalia about 11 years ago
Updated by Kirill Kornyakov about 11 years ago
- Status changed from New to Done