| 31 | } |
| 32 | |
| 33 | array bottomhat(const array& img, const array& mask) { |
| 34 | return (morphclose(img, mask) - img); |
| 35 | } |
| 36 | |
| 37 | array border(const array& img, const int left, const int right, const int top, |
| 38 | const int bottom, const float value = 0.0) { |
no test coverage detected