Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 21, 2025
1 parent 0133996 commit f0536e0
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ def to_grayscale(img: np.array) -> np.array:
return img


def save_intrinsics(camera_model: CameraModel, alpha: float, camera_name: str, file_path: str, rectify_option : RectifyMode):
def save_intrinsics(
camera_model: CameraModel,
alpha: float,
camera_name: str,
file_path: str,
rectify_option: RectifyMode,
):
data = camera_model.as_dict(alpha, rectify_option)
data["camera_name"] = camera_name

Expand Down

0 comments on commit f0536e0

Please sign in to comment.