This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
zjc
/
yolov5
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
PosixPath to str webcam bug fix (
#1437
)
5.0
Glenn Jocher
GitHub
4 years ago
parent
1542ccadb2
commit
bd29a1c946
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
detect.py
+ 1
- 1
detect.py
View File
@@ -115,7 +115,7 @@ def detect(save_img=False):
# Stream results
if view_img:
cv2.imshow(p, im0)
cv2.imshow(
str(
p
)
, im0)
if cv2.waitKey(1) == ord('q'): # q to quit
raise StopIteration
Write
Preview
Loading…
Cancel
Save