00001
00002
00003 #include <Sensors/VisualVector.h>
00004 #include <iostream>
00005
00006 using std::cout;
00007 using std::endl;
00008
00009 int main()
00010 {
00011 cout << "test start---------------------------------------" << endl;
00012
00013 VisualVector* vv = new VisualVector(true);
00014 Vector m = vv->GetVectorMeasurement();
00015
00016 cout << "[" << m(1) << ", " << m(2) << ", " << m(3) << "]" << endl;
00017 delete vv;
00018 vv = 0;
00019
00020 cout << "test end-----------------------------------------" << endl;
00021 }