We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af83917 commit 8ee00d6Copy full SHA for 8ee00d6
README.md
@@ -49,6 +49,15 @@ python detect.py --weights yolov7.pt --source "your video.mp4"
49
#if you want to change source file
50
python detect_and_track.py --weights yolov7.pt --source "your video.mp4"
51
52
+#for WebCam
53
+python detect_and_track.py --weights yolov7.pt --source 0
54
+
55
+#for External Camera
56
+python detect_and_track.py --weights yolov7.pt --source 1
57
58
+#For LiveStream (Ip Stream URL Format i.e "rtsp://username:pass@ipaddress:portno/video/video.amp")
59
+python detect_and_track.py --source "your IP Camera Stream URL" --device 0
60
61
#for specific class (person)
62
python detect_and_track.py --weights yolov7.pt --source "your video.mp4" --classes 0
63
0 commit comments