Skip to content
Snippets Groups Projects
Commit 5c70f1b6 authored by Joseph Redmon's avatar Joseph Redmon
Browse files

:charmander:

parent fc9b867d
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "opencv2/highgui/highgui_c.h" #include "opencv2/highgui/highgui_c.h"
#endif #endif
extern void predict_classifier(char *datacfg, char *cfgfile, char *weightfile, char *filename, int top);
extern void run_voxel(int argc, char **argv); extern void run_voxel(int argc, char **argv);
extern void run_yolo(int argc, char **argv); extern void run_yolo(int argc, char **argv);
extern void run_detector(int argc, char **argv); extern void run_detector(int argc, char **argv);
...@@ -388,6 +389,8 @@ int main(int argc, char **argv) ...@@ -388,6 +389,8 @@ int main(int argc, char **argv)
run_vid_rnn(argc, argv); run_vid_rnn(argc, argv);
} else if (0 == strcmp(argv[1], "coco")){ } else if (0 == strcmp(argv[1], "coco")){
run_coco(argc, argv); run_coco(argc, argv);
} else if (0 == strcmp(argv[1], "classify")){
predict_classifier("cfg/imagenet1k.dataset", argv[2], argv[3], argv[4], 10);
} else if (0 == strcmp(argv[1], "classifier")){ } else if (0 == strcmp(argv[1], "classifier")){
run_classifier(argc, argv); run_classifier(argc, argv);
} else if (0 == strcmp(argv[1], "art")){ } else if (0 == strcmp(argv[1], "art")){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment