
PCL
Bigshow末日快乐
把每一天过好!
展开
-
cloundCompare
https://github.com/cloudcompare/cloudcompare开源软件,github地址原创 2019-12-10 10:33:48 · 452 阅读 · 0 评论 -
点云配准
using PointType = pcl::PointCloud<pcl::PointXYZ>;int main(int argc, char *argv[]){ QCoreApplication a(argc, argv); PointType::Ptr cloud_in(new PointType); cloud_in->width = 5; cloud_...原创 2019-12-02 18:27:04 · 235 阅读 · 0 评论 -
pcl_kdtree
int main(int argc, char *argv[]){ QCoreApplication a(argc, argv); using PointT = pcl::PointXYZ; pcl::PointCloud<PointT>::Ptr cloud(new pcl::PointCloud<PointT>); //点云生成 cloud->w...原创 2019-11-26 14:59:43 · 298 阅读 · 0 评论 -
pcl_show
using showView = pcl::visualization::PCLVisualizer; showView viewer("PCL"); viewer.setBackgroundColor(0, 0, 0); viewer.addPointCloud(cloud); while (!viewer.wasStopped()) viewer.spinOnce();...原创 2019-11-26 10:18:09 · 185 阅读 · 0 评论 -
scope_time
pcl::ScopeTime scope_time("Test loop"); { float total = 0.0f; for (std::size_t i = 0; i < 1e1; ++i) total += static_cast<float> (i); } std::cout << "Done." << st...原创 2019-11-26 09:49:59 · 407 阅读 · 0 评论 -
organized point
// Setup the cloud using PointType = pcl::PointXYZ; using CloudType = pcl::PointCloud<PointType>; CloudType::Ptr cloud(new CloudType); // Make the cloud a 10x10 grid cloud->height = 1...原创 2019-11-26 09:45:19 · 155 阅读 · 0 评论 -
get_max_min_coordinates
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud; cloud = pcl::PointCloud<pcl::PointXYZ>::Ptr(new pcl::PointCloud<pcl::PointXYZ>); std::string szPath = "C:\\Users\\BZL\\Desktop\\rs1.pcd...原创 2019-11-26 09:40:55 · 228 阅读 · 0 评论 -
copy_point_cloud
//cloudType::PointType p; //p.x = 1; p.y = 2; p.z = 3; //cloud->push_back(p); //std::cout << p.x << " " << p.y << " " << p.z << std::endl; //cloudType::Ptr...原创 2019-11-26 09:36:32 · 225 阅读 · 0 评论 -
pcl配置
罗sir推荐原创 2019-11-17 20:01:12 · 252 阅读 · 0 评论