| 120 | pcl::PointCloud<PointT> non_ground_; |
| 121 | |
| 122 | void clear() { |
| 123 | if (!cloud_.empty()) cloud_.clear(); |
| 124 | if (!ground_.empty()) ground_.clear(); |
| 125 | if (!non_ground_.empty()) non_ground_.clear(); |
| 126 | } |
| 127 | }; |
| 128 | |
| 129 | template <typename PointT> |
no test coverage detected