| 521 | |
| 522 | |
| 523 | int KeyFrame::HammingDis(const BRIEF::bitset &a, const BRIEF::bitset &b) |
| 524 | { |
| 525 | BRIEF::bitset xor_of_bitset = a ^ b; |
| 526 | int dis = xor_of_bitset.count(); |
| 527 | return dis; |
| 528 | } |
| 529 | |
| 530 | void KeyFrame::getVioPose(Eigen::Vector3d &_T_w_i, Eigen::Matrix3d &_R_w_i) |
| 531 | { |
nothing calls this directly
no outgoing calls
no test coverage detected