We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d686cc2 commit 8556361Copy full SHA for 8556361
depth_test/depthtest.py
@@ -862,11 +862,11 @@ def timer_event(self):
862
self.plane_fit_rmse_avg = 0
863
self.gt_plane_rmse_med = np.median(self.gt_plane_rmse_arr)
864
if self.true_distance <= 1:
865
- error_threshold = THRESHOLD/2
+ error_threshold = 0.03
866
elif self.true_distance >= 2:
867
error_threshold = THRESHOLD
868
else:
869
- error_threshold = self.true_distance * THRESHOLD/2
+ error_threshold = self.true_distance * (THRESHOLD-0.03)-THRESHOLD+0.06
870
if self.gt_plane_rmse_res < error_threshold and self.fill_plane_res > 0.98:
871
self.set_result('PASS')
872
0 commit comments