AlexeyAB
2017-09-17 548a0bc652b562723695cc107f0844f11d1a2207
src/yolo_console_dll.cpp
@@ -70,7 +70,7 @@
   std::ifstream file(filename);
   std::vector<std::string> file_lines;
   if (!file.is_open()) return file_lines;
   for(std::string line; file >> line;) file_lines.push_back(line);
   for(std::string line; getline(file, line);) file_lines.push_back(line);
   std::cout << "object names loaded \n";
   return file_lines;
}