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
Hello, i'm getting the error below when running bloodvessel.py, any solution behind this?
Traceback (most recent call last): File "bloodvessels.py", line 62, in <module> bloodvessel = extract_bv(fundus) File "bloodvessels.py", line 25, in extract_bv im2, contours, hierarchy = cv2.findContours(f6.copy(),cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE) ValueError: not enough values to unpack (expected 3, got 2)
The text was updated successfully, but these errors were encountered:
The line should look smth like this (2 arguments, not 3): contours, hierarchy = cv2.findContours(f6.copy(),cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)
Sorry, something went wrong.
No branches or pull requests
Hello, i'm getting the error below when running bloodvessel.py, any solution behind this?
Traceback (most recent call last): File "bloodvessels.py", line 62, in <module> bloodvessel = extract_bv(fundus) File "bloodvessels.py", line 25, in extract_bv im2, contours, hierarchy = cv2.findContours(f6.copy(),cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE) ValueError: not enough values to unpack (expected 3, got 2)
The text was updated successfully, but these errors were encountered: