Skip to content

Commit

Permalink
Merge pull request #36 from pupil-labs/lower_conf_after_3d_search
Browse files Browse the repository at this point in the history
Lower 3d search confidence results by 40%
  • Loading branch information
papr committed Oct 12, 2021
2 parents e7f470a + f3c6581 commit 5ec9fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pye3d/detector_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def _predict_from_3d_search(
else:
confidence_3d_search = 0.0

return Search3DResult(pupil_circle, confidence_3d_search)
return Search3DResult(pupil_circle, confidence_3d_search * 0.6)

def _prepare_result(
self,
Expand Down

0 comments on commit 5ec9fdd

Please sign in to comment.