Args: filepath (str): a string that contains the absolute path, including the file name, where the visualized image will be saved.
(self, filepath)
| 300 | self.ax.imshow(img, extent=(0, self.width, self.height, 0), interpolation="nearest") |
| 301 | |
| 302 | def save(self, filepath): |
| 303 | """ |
| 304 | Args: |
| 305 | filepath (str): a string that contains the absolute path, including the file name, where |
| 306 | the visualized image will be saved. |
| 307 | """ |
| 308 | self.fig.savefig(filepath) |
| 309 | |
| 310 | def get_image(self): |
| 311 | """ |
no outgoing calls
no test coverage detected