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
this is the code error i got when i test your detect.py after downloading the weights file
Traceback (most recent call last): File "detect.py", line 189, in <module> pt1 = tuple(reversed(map(int, pt1))) TypeError: 'map' object is not reversible
The text was updated successfully, but these errors were encountered:
to fix it , i change line 189 and 190 with
pt1 = tuple(reversed(list(map(int, pt1)))) pt2 = tuple(reversed(list(map(int, pt2))))
Sorry, something went wrong.
No branches or pull requests
this is the code error i got when i test your detect.py after downloading the weights file
The text was updated successfully, but these errors were encountered: