| 188 | |
| 189 | template <typename T> |
| 190 | numpy_image<rgb_pixel> py_jet ( |
| 191 | const numpy_image<T>& img |
| 192 | ) |
| 193 | { |
| 194 | numpy_image<rgb_pixel> temp; |
| 195 | matrix<T> itemp; |
| 196 | assign_image(itemp, numpy_image<T>(img)); |
| 197 | assign_image(temp, jet(itemp)); |
| 198 | return temp; |
| 199 | } |
| 200 | |
| 201 | // ---------------------------------------------------------------------------------------- |
| 202 |
nothing calls this directly
no test coverage detected