摘要: Qt可以跟VTK和PCL等其他库联合使用,十分强大,下面的代码展示了如何使用Qt联合PCL库来加载和保存PCL/PLY格式的点云: 通过按钮加载点云: 保存点云: 注意savePCDFileBinary是以二进制的方式来储存,这样保存出来的点云占的硬盘空间较小,但是使用例如notepad++等软件打 阅读全文
posted @ 2016-06-06 09:17 Grandyang 阅读(5002) 评论(0) 推荐(0)
摘要: Given a binary tree, return all root-to-leaf paths.ExampleGiven the following binary tree: 1 / \2 3 \ 5All root-to-leaf paths are:[ "1->2->5", "1->3"] 阅读全文
posted @ 2016-06-06 01:26 Grandyang 阅读(1058) 评论(0) 推荐(0)
Fork me on GitHub