summaryrefslogtreecommitdiff
path: root/src/feature.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/feature.cpp')
-rw-r--r--src/feature.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/feature.cpp b/src/feature.cpp
index 95a5366..82ccc63 100644
--- a/src/feature.cpp
+++ b/src/feature.cpp
@@ -161,9 +161,9 @@ Feature::R ( )
{
Matrix<double,6,6> R;
R = Matrix<double,6,6>::Identity();
- R.block<2,2>(0,0) *= VIEW_NOISE;
- R.block<2,2>(2,2) *= INITIAL_VIEW_NOISE;
- R.block<2,2>(4,4) *= REFLECTION_VIEW_NOISE;
+ R.block<2,2>(0,0) *= view_noise;
+ R.block<2,2>(2,2) *= initial_view_noise;
+ R.block<2,2>(4,4) *= reflection_view_noise;
return R;
} /* ----- end of method Feature::R ----- */