def undistorted_image_size(self, image): """Height and width of the undistorted image.""" return io.image_size(self._undistorted_image_file(image))
def image_size(self, image): """Height and width of the image.""" return io.image_size(self._image_file(image))
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))
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)