YOLOv3 WOOOO!!!!!!!

This commit is contained in:
Joseph Redmon
2018-03-25 00:51:26 -07:00
parent 777b098232
commit e84933bfdd
21 changed files with 824 additions and 1780 deletions

View File

@ -794,7 +794,7 @@ void network_detect(network *net, image im, float thresh, float hier_thresh, flo
void run_detector(int argc, char **argv)
{
char *prefix = find_char_arg(argc, argv, "-prefix", 0);
float thresh = find_float_arg(argc, argv, "-thresh", .24);
float thresh = find_float_arg(argc, argv, "-thresh", .5);
float hier_thresh = find_float_arg(argc, argv, "-hier", .5);
int cam_index = find_int_arg(argc, argv, "-c", 0);
int frame_skip = find_int_arg(argc, argv, "-s", 0);