File tree Expand file tree Collapse file tree 5 files changed +5
-10
lines changed Expand file tree Collapse file tree 5 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 4141#include < dbot/pose/euler_vector.h>
4242#include < dbot/rigid_body_renderer.h>
4343#include < memory>
44- #include < ros/package.h>
45- #include < ros/ros.h>
4644
4745namespace dbot
4846{
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ class KinectImageModel
165165 // compute likelihoods ---------------------------------------------
166166 for (size_t i = 0 ; i < size_t (predictions.size ()); i++)
167167 {
168- if (isnan (observations_[intersect_indices[i]]))
168+ if (std:: isnan (observations_[intersect_indices[i]]))
169169 {
170170 log_likes[i_state] += log (1 .);
171171 }
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class KinectPixelModel
8888 Scalar sigma = model_sigma_ + sigma_factor_ * observation * observation;
8989 if (!occlusion_)
9090 {
91- if (isinf (prediction_)) // if the prediction_ is infinite we return
91+ if (std:: isinf (prediction_)) // if the prediction_ is infinite we return
9292 // the limit
9393 probability = tail_weight_ / max_depth_;
9494 else
@@ -100,7 +100,7 @@ class KinectPixelModel
100100 }
101101 else
102102 {
103- if (isinf (prediction_)) // if the prediction_ is infinite we return
103+ if (std:: isinf (prediction_)) // if the prediction_ is infinite we return
104104 // the limit
105105 {
106106 probability =
Original file line number Diff line number Diff line change 1919#pragma once
2020
2121#include < Eigen/Dense>
22-
2322#include " pose_velocity_vector.h"
2423
2524namespace dbot
Original file line number Diff line number Diff line change 1313
1414#pragma once
1515
16- #include < vector>
17- #include < memory>
18-
1916#include < Eigen/Dense>
20-
2117#include < dbot/pose/rigid_bodies_state.h>
18+ #include < memory>
19+ #include < vector>
2220
2321namespace dbot
2422{
You can’t perform that action at this time.
0 commit comments