-
Notifications
You must be signed in to change notification settings - Fork 60
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
[BUG] cucim.skimage.filters.median is not working #520
Comments
Thanks for reporting this @issara3, I can reproduce the issue. This seems to be a bug newly introduced in release 23.02. A temporary workaround is to inctall cuCIM 22.12.00
|
This should be fixed by #521 for the upcoming 23.04 release. If you need to use 23.02 instead of rolling back to 22.12 you could apply the fix locally by making this small fix to the corresponding file in your installed package. The filename you would need to modify can be retrieved via: import os
from cucim import skimage
print(os.path.join(os.path.dirname(skimage.__file__), '_vendored', '_ndimage_filters.py')) |
closes #520 #485 Introduced a bug in rank filtering kernels that was not caught by our current test cases (so this bug is only present in the 23.02 release) This MR fixes the bug and adds test coverage for this case. Authors: - Gregory Lee (https://github.com/grlee77) - https://github.com/jakirkham Approvers: - https://github.com/jakirkham URL: #521
Describe the bug
Running example code from cucim median filter gives me an error
Steps/Code to reproduce bug
Expected behavior
Expect the code to pass without an error
Environment details (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: