Exemple #1
0
 def undistorted_image_size(self, image):
     """Height and width of the undistorted image."""
     return io.image_size(self._undistorted_image_file(image))
Exemple #2
0
 def image_size(self, image):
     """Height and width of the image."""
     return io.image_size(self._image_file(image))
Exemple #3
0
 def undistorted_image_size(self, image: str) -> Tuple[int, int]:
     """Height and width of the undistorted image."""
     return io.image_size(self._undistorted_image_file(image))
Exemple #4
0
 def image_size(self, image: str) -> Tuple[int, int]:
     """Height and width of the image."""
     return io.image_size(self._image_file(image))
def open_image_size(image_path):
        """Height and width of the image."""
        return io.image_size(image_path)