(
model,
image_path,
output_path,
fps,
iters,
)
| 160 | |
| 161 | |
| 162 | def process( |
| 163 | model, |
| 164 | image_path, |
| 165 | output_path, |
| 166 | fps, |
| 167 | iters, |
| 168 | ): |
| 169 | inputs, scale, padder = get_input_video_from_path(image_path) |
| 170 | outputs = interpolater(model, inputs, scale, padder, iters) |
| 171 | write(outputs, image_path, output_path, fps) |
| 172 | |
| 173 | |
| 174 | def parse_args(): |
no test coverage detected