Construct a new Image wrapper. Args: file_path: The path of the image on disk.
(self, file_path: Path)
| 60 | return file_format in cls.SUPPORTED_HDR |
| 61 | |
| 62 | def __init__(self, file_path: Path): |
| 63 | ''' |
| 64 | Construct a new Image wrapper. |
| 65 | |
| 66 | Args: |
| 67 | file_path: The path of the image on disk. |
| 68 | ''' |
| 69 | self.file_path = file_path |
| 70 | |
| 71 | def get_colors(self, coord: tuple[int, int]) -> Color: |
| 72 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected