Skip to content

Commit 67c1127

Browse files
authored
Fixed constraint between first scans for multilaser systems (#539)
1 parent d5cf589 commit 67c1127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/karto_sdk/src/Mapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@ void MapperGraph::AddEdges(LocalizedRangeScan * pScan, const Matrix3 & rCovarian
14731473
pScan,
14741474
pSensorManager->GetScans(rCandidateSensorName),
14751475
bestPose, covariance);
1476-
LinkScans(pScan, pSensorManager->GetScan(rCandidateSensorName, 0), bestPose, covariance);
1476+
LinkScans(pSensorManager->GetScan(rCandidateSensorName, 0), pScan, bestPose, covariance);
14771477

14781478
// only add to means and covariances if response was high "enough"
14791479
if (response > m_pMapper->m_pLinkMatchMinimumResponseFine->GetValue()) {

0 commit comments

Comments
 (0)