Possibility of using ROS Robot Localization Iibs?
is there any possibilities to merge ros robot localization package implementation libs through cmake for my own project to utilize its sensor fusion algorithm?
How is this different to using the robot_localisation package normally as part of a ROS package? Do you mean you don't want to depend on the libraries?
i mean i dont want to use ROS dependencies and enviroment, i just want to use the EKF filter and ROS functions on my own IDE by cross compiling it and inlcuding the liberaries in my project to use all of this implementation functionalities, IF it is possible!
You'd be better off getting the source code for the robot_localization package crediting the authors correctly, and taking the EKF functionality you need and using that.
but is it possible doing it so? As i understand it is quite different concept of how nodes work and how EKF works and than it does sensor fusion, There isnt any explicit information of sensor fusion which i want to do through ekf (IMU+GPS), Any Leads?
Let's take a step back: @Mus007: what is it that you actually want to do? Is this it:
So you want to use the sensor fusion part of
robot_localization
in a non-ROS program?Yes, using EKF..
There are many good tutorials and open source implementations of extended kalman filters that would probably be a better place to start.
yeah i know but i needed 3 dimensional EKF with imu and gps fusion so i thought i could use them !
@gvdhoorn Yes along with ekf..