forked from moveit/moveit_grasps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a97c70a
commit 70b7864
Showing
6 changed files
with
139 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -232,3 +232,34 @@ Features we'd like to see added to this project: | |
|
||
- Dave Coleman, CU Boulder @davetcoleman | ||
- Bence Magyar, PAL Robotics @bmagyar | ||
|
||
#PCL Junk | ||
|
||
install pcl from source: | ||
``` | ||
git clone [email protected]:PointCloudLibrary/pcl.git | ||
cd pcl | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release .. | ||
make | ||
sudo make install | ||
``` | ||
Read the output and see where it gets installed. Mine was `/usr/local/include/pcl-1.8` | ||
|
||
check if you have local include in 'LD_LIBRARY_PATH' | ||
``` | ||
echo $LD_LIBRARY_PATH | ||
``` | ||
|
||
if not, add to your `.bashrc` | ||
``` | ||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/include | ||
``` | ||
|
||
for files that need it: | ||
``` | ||
#include <pcl-1.8/pcl/features/moment_of_inertia_estimation.h> | ||
``` | ||
|
||
Edit `CMakeLists` per [this ROS Answer](#include <pcl-1.8/pcl/features/moment_of_inertia_estimation.h>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters