Skip to content

Commit

Permalink
feat(intrinsic_camera_calibrator): update default value
Browse files Browse the repository at this point in the history
Signed-off-by: amadeuszsz <[email protected]>
  • Loading branch information
amadeuszsz committed Nov 20, 2024
1 parent 76f3613 commit 494fcb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def __init__(self, cfg: dict = dict(), **kwargs): # noqa C408

# Other criteria for new samples is using 3d statistics
# They have the advantage of considering the different out-of-plane rotations instead of a single scalar (e.g., differentiation of left and right rotations)
self.filter_by_3d_redundancy = Parameter(bool, value=True, min_value=False, max_value=True)
self.filter_by_3d_redundancy = Parameter(bool, value=False, min_value=False, max_value=True)
self.min_3d_center_difference = Parameter(float, value=1.0, min_value=0.1, max_value=100.0)
self.min_tilt_difference = Parameter(float, value=15.0, min_value=0.0, max_value=90)

Expand Down

0 comments on commit 494fcb4

Please sign in to comment.