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 41
41
#include < dbot/pose/euler_vector.h>
42
42
#include < dbot/rigid_body_renderer.h>
43
43
#include < memory>
44
- #include < ros/package.h>
45
- #include < ros/ros.h>
46
44
47
45
namespace dbot
48
46
{
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ class KinectImageModel
165
165
// compute likelihoods ---------------------------------------------
166
166
for (size_t i = 0 ; i < size_t (predictions.size ()); i++)
167
167
{
168
- if (isnan (observations_[intersect_indices[i]]))
168
+ if (std:: isnan (observations_[intersect_indices[i]]))
169
169
{
170
170
log_likes[i_state] += log (1 .);
171
171
}
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class KinectPixelModel
88
88
Scalar sigma = model_sigma_ + sigma_factor_ * observation * observation;
89
89
if (!occlusion_)
90
90
{
91
- if (isinf (prediction_)) // if the prediction_ is infinite we return
91
+ if (std:: isinf (prediction_)) // if the prediction_ is infinite we return
92
92
// the limit
93
93
probability = tail_weight_ / max_depth_;
94
94
else
@@ -100,7 +100,7 @@ class KinectPixelModel
100
100
}
101
101
else
102
102
{
103
- if (isinf (prediction_)) // if the prediction_ is infinite we return
103
+ if (std:: isinf (prediction_)) // if the prediction_ is infinite we return
104
104
// the limit
105
105
{
106
106
probability =
Original file line number Diff line number Diff line change 19
19
#pragma once
20
20
21
21
#include < Eigen/Dense>
22
-
23
22
#include " pose_velocity_vector.h"
24
23
25
24
namespace dbot
Original file line number Diff line number Diff line change 13
13
14
14
#pragma once
15
15
16
- #include < vector>
17
- #include < memory>
18
-
19
16
#include < Eigen/Dense>
20
-
21
17
#include < dbot/pose/rigid_bodies_state.h>
18
+ #include < memory>
19
+ #include < vector>
22
20
23
21
namespace dbot
24
22
{
You can’t perform that action at this time.
0 commit comments