(input)
| 22 | return sub_path |
| 23 | |
| 24 | def resize(input): |
| 25 | dimension = input.shape |
| 26 | result = ndimage.zoom(input, (256 / dimension[0], 256 / dimension[1]), order=3) |
| 27 | return result |
| 28 | |
| 29 | def std(input): |
| 30 | if input.max() == 0: |
nothing calls this directly
no outgoing calls
no test coverage detected