Fixed compile error

pull/355/head
AlexeyAB 7 years ago
parent 8b94d474d5
commit 181ac4dfe3
  1. 3
      src/yolo_console_dll.cpp

@ -213,7 +213,6 @@ int main(int argc, char *argv[])
Tracker_optflow tracker_flow; Tracker_optflow tracker_flow;
detector.wait_stream = true; detector.wait_stream = true;
#endif #endif
preview_boxes_t large_preview(100, 150, false), small_preview(50, 50, true);
while (true) while (true)
{ {
@ -223,6 +222,8 @@ int main(int argc, char *argv[])
try { try {
#ifdef OPENCV #ifdef OPENCV
preview_boxes_t large_preview(100, 150, false), small_preview(50, 50, true);
std::string const file_ext = filename.substr(filename.find_last_of(".") + 1); std::string const file_ext = filename.substr(filename.find_last_of(".") + 1);
std::string const protocol = filename.substr(0, 7); std::string const protocol = filename.substr(0, 7);
if (file_ext == "avi" || file_ext == "mp4" || file_ext == "mjpg" || file_ext == "mov" || // video file if (file_ext == "avi" || file_ext == "mp4" || file_ext == "mjpg" || file_ext == "mov" || // video file

Loading…
Cancel
Save