Skip to content

Commit

Permalink
Faster optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
MaticTonin committed Dec 6, 2024
1 parent b42a391 commit 64c9606
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_py/depthai_viewer/_backend/packet_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def __init__(self, store: Store, calibration_handler: dai.CalibrationHandler, fa
self.stereo = stereo
if self.stereo:
self._dynamic_recalibration = Recalibration(calibration_handler, factoryCalibration_handler)
self._dynamic_recalibration.min_pts_for_calib = 5000
self._dynamic_recalibration.min_pts_for_calib = 4000
self._display = Display()
self.new_calib = None
self.flashCalibration = False
Expand Down Expand Up @@ -545,7 +545,7 @@ def _start_optimization(self) -> None:
Start optimization when 'r' key is pressed.
"""
print("Starting feature collection and optimization...")
self._dynamic_recalibration.start_optimization(30)
self._dynamic_recalibration.start_optimization(8)



Expand Down

0 comments on commit 64c9606

Please sign in to comment.