| 546 | } |
| 547 | |
| 548 | int Keyframe::HammingDis(const DVision::BRIEF256::bitset& a, const DVision::BRIEF256::bitset& b) { |
| 549 | DVision::BRIEF256::bitset xor_of_bitset = a ^ b; |
| 550 | int dis = xor_of_bitset.count(); |
| 551 | return dis; |
| 552 | } |
| 553 | |
| 554 | void Keyframe::getSVInPose(Eigen::Vector3d& _T_w_i, Eigen::Matrix3d& _R_w_i) { |
| 555 | _T_w_i = svin_T_w_i; |
nothing calls this directly
no outgoing calls
no test coverage detected