We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问/wpb_home_tutorials/data/libkl_outlier.so文件可以提供arm版本的库文件吗?
The text was updated successfully, but these errors were encountered:
为了 catkin_make 编译通过,我的方法是暂时移除对 libkl_outlier.so 的依赖。
步骤如下:
找到如下代码:
target_link_libraries(wpb_home_follow ${catkin_LIBRARIES} -lkl_outlier ${PCL_LIBRARIES} )
将其修改为:
target_link_libraries(wpb_home_follow ${catkin_LIBRARIES} ${PCL_LIBRARIES} )
移除 kl_outlier.h
// #include "kl_outlier.h"
移除相关函数调用
// filter(flw_x,flw_y,ranges,raw,new_flw_x,new_flw_y); // thredhold(flw_x);
另外,wpbh_local_planner 功能包中的 libwl_helper.so 库也因为架构问题,无法在 ARM 架构平台使用,为了 catkin_make 编译通过,依然暂时移除对 libwl_helper.so 的依赖。
target_link_libraries(wpbh_local_planner ${catkin_LIBRARIES} -lwl_helper)
// InitHelper();
如果 wl_helper 库中的功能(如障碍检测或路径规划)对项目非常重要,请使用 此处 的 libwl_helper.so 文件替换掉原来的文件。
Sorry, something went wrong.
No branches or pull requests
请问/wpb_home_tutorials/data/libkl_outlier.so文件可以提供arm版本的库文件吗?
The text was updated successfully, but these errors were encountered: