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
extracting-nuclear-codes-or-smth
otsu.ipynb Task 1.4
Ich hab negative Otsu werte...
The text was updated successfully, but these errors were encountered:
There was an overflow occurring due to the following mistake:
for x in range(i): pixels_left += pixels_left + img[x]
This computes an exponential function (double in each iteration, plus something) instead of the intended sum, should be:
for x in range(i): pixels_left += img[x]
Sorry, something went wrong.
No branches or pull requests
Repository
extracting-nuclear-codes-or-smth
Access rights
Git commit and push
Task
otsu.ipynb Task 1.4
Describe the problem (if possible)
Ich hab negative Otsu werte...
The text was updated successfully, but these errors were encountered: