Package Details: pcl 1.14.1-4

Git Clone URL: https://aur.archlinux.org/pcl.git (read-only, click to copy)
Package Base: pcl
Description: A standalone, large scale, open project for 2D/3D image and point cloud processing
Upstream URL: https://www.pointclouds.org
Licenses: BSD-3-Clause
Submitter: None
Maintainer: kino_t
Last Packager: kino_t
Votes: 49
Popularity: 0.001457
First Submitted: 2011-04-05 03:39 (UTC)
Last Updated: 2024-09-05 12:01 (UTC)

Sources (2)

Pinned Comments

kino_t commented on 2023-02-18 14:49 (UTC) (edited on 2023-02-19 01:24 (UTC) by kino_t)

Binary of pcl is now available: https://github.com/arch4edu/arch4edu

Latest Comments

« First ‹ Previous 1 .. 15 16 17 18 19 20 21 22 23 24 Next › Last »

<deleted-account> commented on 2014-11-30 13:31 (UTC)

I did and now it builds. Maybe it would be better to set it off by default?

bchretien commented on 2014-11-25 13:06 (UTC)

@v01d: have you tried turning BUILD_examples off?

<deleted-account> commented on 2014-11-25 13:03 (UTC)

anyone?

<deleted-account> commented on 2014-11-01 02:09 (UTC)

does not build for me, I'm getting: [ 44%] Building CXX object examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/example_nurbs_fitting_closed_curve.cpp.o /home/v01d/misc/tmp/yaourt-tmp-v01d/aur-pcl/src/pcl-pcl-1.7.2/examples/surface/example_nurbs_fitting_closed_curve.cpp:1:55: fatal error: pcl/surface/on_nurbs/fitting_curve_2d_pdm.h: No such file or directory #include <pcl/surface/on_nurbs/fitting_curve_2d_pdm.h> ^ compilation terminated. examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/build.make:54: recipe for target 'examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/example_nurbs_fitting_closed_curve.cpp.o' failed make[2]: *** [examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/example_nurbs_fitting_closed_curve.cpp.o] Error 1 CMakeFiles/Makefile2:2907: recipe for target 'examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/all' failed make[1]: *** [examples/surface/CMakeFiles/pcl_example_nurbs_fitting_closed_curve.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs....

ppwwyyxx commented on 2014-09-22 22:27 (UTC)

Sorry for the delay. The package is updated to 1.7.2.

Syderitic commented on 2014-09-22 20:54 (UTC)

idk, i was installing ros-hydro-gazebo and i couldnt compile 1.7.1 so i tried 1.7.2 and it worked

taketwo commented on 2014-09-22 20:52 (UTC)

I see the package was updated yesterday, but the version is still 1.7.1, while the latest release is 1.7.2. Is there any reason for that?

Syderitic commented on 2014-09-22 20:41 (UTC)

Using boost 1.56 Managed to compile 1.7.2 by commenting the sed -i line and wrapping the posix_time.hpp like miku in my PKGBUILD btw md5sums:02c72eb6760fcb1f2e359ad8871b9968 Loving Arch!! First post! waaay!!

miku commented on 2014-09-18 20:07 (UTC)

I wrapped all boost posix_time.hpp includes like this: #ifndef Q_MOC_RUN #include <boost/date_time/posix_time/posix_time.hpp> #endif In my local PKGBUILD I used the following line to do this: grep -rl '#include <boost/date_time/posix_time/posix_time.hpp>' . | xargs sed -i "s/#include <boost\\/date_time\\/posix_time\\/posix_time.hpp>/#ifndef Q_MOC_RUN\n\r#include <boost\\/date_time\\/posix_time\\/posix_time.hpp>\n\r#endif/g" With this modification pcl compiles for me with using boost 1.56. Maybe this information helps to find a patch.

pallegro commented on 2014-09-15 22:30 (UTC)

Don't have time to make a diff right now, but I wrapped all boost and pcl includes in apps/include/pcl/apps/{manual_registration.h,pcd_video_player.h} with #ifndef Q_MOC_RUN and it (pcl 1.7.2) magically built :). I tried just wrapping the boost includes but that failed and don't have time to track down which pcl include is bringing in boost/type_traits/detail/has_binary_operator.hpp