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
There is an overflow warning in while running python isp_pipeline.py with default raw image.
python isp_pipeline.py
/openISP/model/bnf.py:33: RuntimeWarning: overflow encountered in ushort_scalars rdiff[i,j] = abs(img_pad[y+i,x+j] - img_pad[y+2, x+2])```
The text was updated successfully, but these errors were encountered:
you can fix it by:
rdiff[i,j] = abs(img_pad[y+i,x+j].astype(int) - img_pad[y+2, x+2].astype(int))
I fixed this warning issue in this commit (not merged yet)
Sorry, something went wrong.
No branches or pull requests
There is an overflow warning in while running
python isp_pipeline.py
with default raw image.The text was updated successfully, but these errors were encountered: