-
Notifications
You must be signed in to change notification settings - Fork 405
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
skimage imread
as_grey vs as_gray
#130
Comments
you need reinstall the scikit-image
|
Since [I think] they changed the parameter naming in scikit-image 0.15 I get your advice.; |
so we all just stick to old versions now? |
I haven't see any issues with a manually patched version either. |
Just to let you know, make you aware that based on https://stackoverflow.com/questions/58993530/typeerror-self-open-got-an-unexpected-keyword-argument-as-grey-python I ran into that same issue ...
it may require, at least this fixed it for me, a small tweak in goldberg.py
to line 239 and 246
from
return imread(image_or_path, as_grey=True)
toreturn imread(image_or_path, as_gray=True)
Otherwise nice piece of work!
The text was updated successfully, but these errors were encountered: