| 14 | namespace af { |
| 15 | |
| 16 | array bilateral(const array &in, const float spatial_sigma, |
| 17 | const float chromatic_sigma, const bool is_color) { |
| 18 | af_array out = 0; |
| 19 | AF_THROW( |
| 20 | af_bilateral(&out, in.get(), spatial_sigma, chromatic_sigma, is_color)); |
| 21 | return array(out); |
| 22 | } |
| 23 | |
| 24 | } // namespace af |
nothing calls this directly
no test coverage detected