Skip to content

Commit

Permalink
修改参数保持与实车一致
Browse files Browse the repository at this point in the history
  • Loading branch information
neozhaoliang committed Jul 21, 2020
1 parent 7f40efe commit 76a14b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions surround_view/birdview.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ def make_luminance_balance(self):

def tune(x):
if x >= 1:
return x * np.exp((1 - x) * 0.4)
return x * np.exp((1 - x) * 0.5)
else:
return x * np.exp((1 - x) * 0.6)
return x * np.exp((1 - x) * 0.8)

front, back, left, right = self.frames
m1, m2, m3, m4 = self.masks
Expand Down

0 comments on commit 76a14b4

Please sign in to comment.