Skip to content

Commit

Permalink
Fix: Lower item threshold to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
LmeSzinc committed Nov 19, 2023
1 parent 4ef3dd2 commit 0c5a1e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/map/interact/aim.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def predict_item(self, v):
self.draw_item = cv2.multiply(draw, 4)

# Find peaks
points = inrange(draw, lower=12)
points = inrange(draw, lower=10)
points = Points(points).group(threshold=10)
if points.shape[0] > 3:
logger.warning(f'AimDetector.predict_item() too many peaks: {points.shape}')
Expand Down

0 comments on commit 0c5a1e1

Please sign in to comment.