pcl

Point Cloud Library, robust registration of two point clouds

匿名 (未验证) 提交于 2019-12-03 02:44:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I need to find the transformation and rotation difference between two 3d point clouds. For this I am looking at PCL, as it seems ideal. On clean test data I have Iterative closest point working, but giving strange results(although I may have implemented it incorrectly...) I have pcl::estimateRigidTransformation working, and it seems better, although I assume will deal worse with noisy data. My question is: The two clouds will be noisy, and although they should contain the same points, there will be some discrepancies. What is the best way to

How to use PCL in ASP.NET Core 1.0 RC2 project

匿名 (未验证) 提交于 2019-12-03 02:31:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to use a simple (POCO only without other dependencies) PCL with targets Xamarin.Android Universal Windows 10 ASP.NET Core 1.0 in an ASP.NET Core 1.0 RC2 project (all in the same solution). I have added this import to my project.json: "frameworks": { "netcoreapp1.0": { "imports": [ "dotnet5.6", "dnxcore50", "portable-net451+win8" ], "dependencies": { "PCL.Library": { "target": "project" } } } } I don’t get any errors (compilation or otherwise) and the PCL.Library project shows up in the references (without warning signs or anything).

PCL (point cloud library) 1.7 on Ubuntu 16.04 LTS build error

匿名 (未验证) 提交于 2019-12-03 02:31:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I updated Ubuntu version from 14.04 lts to 16.04 lts and got problems when building projects that utilizes point cloud library. (It used to work well on Ubuntu 14.04 and I build my projects with qtcreator) The warning messages I have are : warning: libboost_system.so.1.54.0, needed by /usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/libpcl_common.so, may conflict with libboost_system.so.1.58.0 warning: libboost_thread.so.1.54.0, needed by /usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/libpcl_common.so, may conflict with libboost_thread.so.1

Not appear Xamarin forms PCL projects in visual studio 2017 enterprise version 15.5.2

匿名 (未验证) 提交于 2019-12-03 02:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I upgrade visual studio 2017 to version 15.5.2, when I create a new project of xamarin forms not show PCL (Portable Class Libraries) project that appear .net standard and Shared Projects. I need to create some project PCL of xamarin forms, help me. 回答1: Since a recent version the templates replace the PCL library with a .NET Standard library. And I suggest that you stick with it, as it will be the future. You should be able to create a PCL library if you really want to and make it work. Also, as a workaround, you could create the project on

How to read .ply file using PCL

匿名 (未验证) 提交于 2019-12-03 02:03:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I can read .pcd data using this program. #include #include #include int main (int argc, char** argv) { pcl::PointCloud ::Ptr cloud (new pcl::PointCloud ); if (pcl::io::loadPCDFile ("airplane.pcd", *cloud) == -1) //* load the file { PCL_ERROR ("Couldn't read file test_pcd.pcd \n"); return (-1); } std::cout width * cloud->height points.size (); ++i) std::cout points[i].x points[i].y points[i].z How to read a .ply file i made the following change in line 10: if (pcl::io::loadPLYFile ("airplane.ply", *cloud) == -1) //* load the file It gave

Upsampling 3D point cloud using PCL

匿名 (未验证) 提交于 2019-12-03 01:46:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have a sparse point cloud of a 3D model. I need to populate the point cloud. In other words, I need to upsample the point cloud for surface reconstruction of the 3D point cloud. I followed this link, but could not understand the method. Is there an easy way to do that ? Thanks in advance. 回答1: An alternative resource with some simpler code using the Point Cloud Library is available at the following link: http://pointclouds.org/documentation/tutorials/resampling.php I would suggest starting there. Note that the code just calls an

Handling missing types in PCL with real types existing on some of the platforms

匿名 (未验证) 提交于 2019-12-03 01:12:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This may be a question answered somewhere, but I can't seem to find an answer. I am working on a project to port Mono.Data.Sqlite to Windows Phone and Windows Store, but of course this requires System.Data to be ported as well. I decided to use PCLs as this removes the need for separate assemblies for the platforms (I am also checking out Silverlight, but this is not a priority) In doing this, I have managed to get most of the functionality across except for one type - DBNull :( This is where the problem is, WP and SL have the DBNull

Cmake unable to find Boost

匿名 (未验证) 提交于 2019-12-03 01:08:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I tried to make PCL example project. here i used cmake to build. But cmake gives an Error as below Could NOT find Boost CMake Error at C:/Program Files/PCL 1.5.1/cmake/PCLConfig.cmake:38 (message): common is required but boost was not found Call Stack (most recent call first): C:/Program Files/PCL 1.5.1/cmake/PCLConfig.cmake:346 (pcl_report_not_found) C:/Program Files/PCL 1.5.1/cmake/PCLConfig.cmake:491 (find_external_library) CMakeLists.txt:5 (find_package) I have Boost in C:\Program Files\PCL 1.5.1\3rdParty\Boost , since cmake couldn't

TPL on PCL of mvvmcross

匿名 (未验证) 提交于 2019-12-03 01:08:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I see i can't use TPL in the CORE projects. Is the PCL doesn't support System.Threading.Tasks? (i checked on profile104 and there is no System.Threading.Tasks namespace, but on profile 131 there is...) So, is there a way to use mvvmcross with TPL? Thanks. 回答1: There are several ways to use TPL with portable class libraries. You can use a profile like 104 and extend it with the BCL AsyncBridge support classes. For more on this see http://channel9.msdn.com/Events/Build/2012/3-004 and the resources. Several people have done this - but I don't

dlopen: cannot load any more object with static TLS

匿名 (未验证) 提交于 2019-12-03 00:52:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have a large mixed java/c++ application that loads multiple shared libs into java. It works fine on my Ubuntu 12.04 32-bit machine, but I'm having problems getting things to work on a Fedora 17 64-bit machine. Everything compiles fine, but when I try to run it I get: Exception in thread "main" java.lang.UnsatisfiedLinkError: /pathto/libmylib.so: dlopen: cannot load any more object with static TLS Any help is greatly appreciated! UPDATE: I've narrowed this down to a problem with PCL (point cloud library) dependencies. libmylib.so depends on