We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
envs/nerf/lib/python3.7/site-packages/imageio/v2.py", line 349, in imread
result = file.read(index=0, **kwargs) TypeError: read() got an unexpected keyword argument 'ignoregamma'
The text was updated successfully, but these errors were encountered:
I meet the same issue, have you solve it?
Sorry, something went wrong.
Based on the imageio doc imageio.plugins.pillow.PillowPlugin.read it seems to have change it to apply_gamma .
imageio.plugins.pillow.PillowPlugin.read
apply_gamma
in load_llff.py line 110 change ignoregamma=True to apply_gamma=False worked for me.
load_llff.py
ignoregamma=True
apply_gamma=False
imread
ignoregamma
No branches or pull requests
envs/nerf/lib/python3.7/site-packages/imageio/v2.py", line 349, in imread
result = file.read(index=0, **kwargs)
TypeError: read() got an unexpected keyword argument 'ignoregamma'
The text was updated successfully, but these errors were encountered: