| 112 | } |
| 113 | |
| 114 | void ICP::updatePointPairs() |
| 115 | { |
| 116 | MR_TIMER; |
| 117 | MR::updatePointPairs( flt2refPairs_, flt_, ref_, prop_.cosThreshold, prop_.distThresholdSq, prop_.mutualClosest, prop_.ignoreBdTgts ); |
| 118 | MR::updatePointPairs( ref2fltPairs_, ref_, flt_, prop_.cosThreshold, prop_.distThresholdSq, prop_.mutualClosest, prop_.ignoreBdTgts ); |
| 119 | deactivatefarDistPairs_(); |
| 120 | } |
| 121 | |
| 122 | std::string getICPStatusInfo( int iterations, ICPExitType exitType ) |
| 123 | { |
no test coverage detected