| 20 | // ---------------------------------------------------------------------------- |
| 21 | |
| 22 | BRIEF::BRIEF(int nbits, int patch_size, Type type) : m_bit_length(nbits), m_patch_size(patch_size), m_type(type) { |
| 23 | assert(patch_size > 1); |
| 24 | assert(nbits > 0); |
| 25 | generateTestPoints(); |
| 26 | } |
| 27 | |
| 28 | // ---------------------------------------------------------------------------- |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected