@@ -28,15 +28,15 @@ namespace dynamicgraph
28
28
,CONSTRUCT_SIGNAL_IN(point3D,dynamicgraph::Vector)
29
29
,CONSTRUCT_SIGNAL_IN(transfo,MatrixHomogeneous)
30
30
31
- ,CONSTRUCT_SIGNAL_OUT(point3Dgaze,dynamicgraph::Vector,point3DSIN<<transfoSIN )
32
- ,CONSTRUCT_SIGNAL_OUT(depth,double ,point3DgazeSOUT )
33
- ,CONSTRUCT_SIGNAL_OUT(point2D,dynamicgraph::Vector,point3DgazeSOUT<<depthSOUT )
31
+ ,CONSTRUCT_SIGNAL_OUT(point3Dgaze,dynamicgraph::Vector,m_point3DSIN<<m_transfoSIN )
32
+ ,CONSTRUCT_SIGNAL_OUT(depth,double ,m_point3DgazeSOUT )
33
+ ,CONSTRUCT_SIGNAL_OUT(point2D,dynamicgraph::Vector,m_point3DgazeSOUT<<m_depthSOUT )
34
34
{
35
- Entity::signalRegistration ( point3DSIN );
36
- Entity::signalRegistration ( transfoSIN );
37
- Entity::signalRegistration ( point3DgazeSOUT );
38
- Entity::signalRegistration ( point2DSOUT );
39
- Entity::signalRegistration ( depthSOUT );
35
+ Entity::signalRegistration ( m_point3DSIN );
36
+ Entity::signalRegistration ( m_transfoSIN );
37
+ Entity::signalRegistration ( m_point3DgazeSOUT );
38
+ Entity::signalRegistration ( m_point2DSOUT );
39
+ Entity::signalRegistration ( m_depthSOUT );
40
40
}
41
41
42
42
@@ -47,8 +47,8 @@ namespace dynamicgraph
47
47
dynamicgraph::Vector& VisualPointProjecter::
48
48
point3DgazeSOUT_function ( dynamicgraph::Vector &p3g, int iter )
49
49
{
50
- const dynamicgraph::Vector & p3 = point3DSIN (iter);
51
- const MatrixHomogeneous & M = transfoSIN (iter);
50
+ const dynamicgraph::Vector & p3 = m_point3DSIN (iter);
51
+ const MatrixHomogeneous & M = m_transfoSIN (iter);
52
52
MatrixHomogeneous Mi; Mi = M.inverse (Eigen::Affine);
53
53
p3g = Mi.matrix ()*p3;
54
54
return p3g;
@@ -59,8 +59,8 @@ namespace dynamicgraph
59
59
{
60
60
sotDEBUGIN (15 );
61
61
62
- const dynamicgraph::Vector & p3 = point3DgazeSOUT (iter);
63
- const double &z =depthSOUT (iter);
62
+ const dynamicgraph::Vector & p3 = m_point3DgazeSOUT (iter);
63
+ const double &z =m_depthSOUT (iter);
64
64
assert (z>0 );
65
65
66
66
p2.resize (2 );
@@ -74,7 +74,7 @@ namespace dynamicgraph
74
74
double & VisualPointProjecter::
75
75
depthSOUT_function ( double & z, int iter )
76
76
{
77
- const dynamicgraph::Vector & p3 = point3DgazeSOUT (iter);
77
+ const dynamicgraph::Vector & p3 = m_point3DgazeSOUT (iter);
78
78
assert (p3.size () == 3 );
79
79
z=p3 (2 );
80
80
return z;
0 commit comments