(path)
| 190 | |
| 191 | |
| 192 | def _load_pixels(path): |
| 193 | image_bytes = assets.get_contents(path) |
| 194 | image = Image.open(io.BytesIO(image_bytes)) |
| 195 | return np.array(image) |
| 196 | |
| 197 | |
| 198 | def compute_rms(image1, image2): |
no test coverage detected
searching dependent graphs…