| 250 | //////////////////////////////////////////////////////////////////////////////// |
| 251 | |
| 252 | void |
| 253 | pcl::ihs::InputDataProcessing::erode(MatrixXb& mask, const int k) const |
| 254 | { |
| 255 | mask = manhattan(mask, false).array() > k; |
| 256 | } |
| 257 | |
| 258 | //////////////////////////////////////////////////////////////////////////////// |
| 259 |