| 44 | |
| 45 | template <typename T> |
| 46 | numpy_image<T> py_equalize_histogram ( |
| 47 | const numpy_image<T>& img |
| 48 | ) |
| 49 | { |
| 50 | numpy_image<T> out; |
| 51 | equalize_histogram(img,out); |
| 52 | return out; |
| 53 | } |
| 54 | |
| 55 | // ---------------------------------------------------------------------------------------- |
| 56 |
nothing calls this directly
no test coverage detected