Go to the documentation of this file.00001
00002
00003 """
00004 this is example file for Sample6dofRobot robot
00005
00006 $ roslaunch hrpsys sample6dofrobot.launch
00007 $ rosrun hrpsys sample6dofrobot-kalman-filter.py
00008
00009 """
00010
00011 import imp, sys, os
00012
00013
00014 try:
00015 imp.find_module('hrpsys')
00016 sys.path.append(imp.find_module('hrpsys')[1])
00017 except:
00018 import roslib
00019 roslib.load_manifest('hrpsys')
00020
00021 sys.path.append(os.path.dirname(os.path.abspath(__file__))+'/../share/hrpsys/samples/Sample6dofRobot/')
00022
00023 import sample6dofrobot_kalman_filter
00024
00025 if __name__ == '__main__':
00026 sample6dofrobot_kalman_filter.demo()
00027
00028
00029 if [s for s in sys.argv if "--gtest_output=xml:" in s] :
00030 import unittest, rostest
00031 rostest.run('hrpsys', 'sample6dofrobot_kalman_filter', unittest.TestCase, sys.argv)