/////////////////////////////////////////////////////////////////////////////////////////
| 47 | |
| 48 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 49 | void |
| 50 | pcl::MaskMap::resize(const std::size_t width, const std::size_t height) |
| 51 | { |
| 52 | data_.resize(width * height); |
| 53 | width_ = width; |
| 54 | height_ = height; |
| 55 | } |
| 56 | |
| 57 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 58 | pcl::MaskMap |
no outgoing calls