warning fix

This commit is contained in:
Francesco Gatti
2020-04-09 01:00:14 +02:00
parent 2389df8626
commit c248a94101
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -22,10 +22,10 @@ int main(int argc, char *argv[]) {
signal(SIGINT, sig_handler);
char *net = "yolo3_berkeley.rt";
std::string net = "yolo3_berkeley.rt";
if(argc > 1)
net = argv[1];
char *input = "../demo/yolo_test.mp4";
std::string input = "../demo/yolo_test.mp4";
if(argc > 2)
input = argv[2];
char ntype = 'y';