forked from qqwweee/keras-yolo3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Window mode and Video suppport(Separate Files) (qqwweee#7)
* Add video support * Add Window mode * remove main and move to yolovideo * Separate and Add RealTime Detection Part 4 Usage * Add yolo_video * Add image_detection part here * weight file name and comment change * Add TODO
- Loading branch information
1 parent
2c320ef
commit 5ba9ab3
Showing
3 changed files
with
35 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
from yolo import YOLO | ||
from yolo import detect_video | ||
|
||
|
||
|
||
if __name__ == '__main__': | ||
video_path='path2your-video' | ||
yolo = YOLO() | ||
#detect_img(yolo) | ||
detect_video(yolo,video_path) |