Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] add AdjustGamma transform #232

Merged
merged 12 commits into from
Dec 2, 2020
Prev Previous commit
Next Next commit
fix syntax error
  • Loading branch information
yamengxi committed Nov 26, 2020
commit 85602a7a3b74f4266b9d31e89dedee2bbd2118c6
2 changes: 1 addition & 1 deletion mmseg/datasets/pipelines/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def __call__(self, results):
return results

def __repr__(self):
return self.__class__.__name__ + f'(gamma={self.gamma})'
return self.__class__.__name__ + f'(gamma={self.gamma})'


@PIPELINES.register_module()
Expand Down