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
If you input image with clicked coordinates, I found the app throw an error. The error is caused by two masks has different size when computing IOU,.
It cause by the code in app.py:
app.py
# about line 161-165 w, h = pil_image.size #if w > 800: # pil_image.thumbnail((800, 800*h/w)) # input_image.thumbnail((800, 800*h/w)) # coords = str(int(int(coords.split(',')[0]) * 800 / w)) + ',' + str(int(int(coords.split(',')[1]) * 800 / w))
comment thumbnail methods fix this issue but not sure I should do this.
thumbnail
The text was updated successfully, but these errors were encountered:
Indeed we found it could cause error previously (@Jingkang50), we will fix it soon!
Sorry, something went wrong.
Luodian
Jingkang50
No branches or pull requests
If you input image with clicked coordinates, I found the app throw an error. The error is caused by two masks has different size when computing IOU,.
It cause by the code in
app.py
:comment
thumbnail
methods fix this issue but not sure I should do this.The text was updated successfully, but these errors were encountered: