11 #include "../core/ObjectData.h" 12 #include "../graph/Definitions.h" 16 typedef std::vector<std::vector<std::vector<double>>> Vector3d;
17 typedef std::vector<std::vector<double>> Vector2d;
36 static void ReadCSV(Vector3d& values,
37 const std::string& filename,
38 char delimiter =
';');
47 static void ReadCSV(Vector2d& values,
48 const std::string& filename,
49 char delimiter =
';');
57 static void ListFiles(
const std::string& folder,
58 std::vector<std::string>& file_names,
69 const std::string& file_name,
70 char delimiter =
';');
75 #endif //GBMOT_FILEIO_H Definition: FileIO.cpp:10
static void ListFiles(const std::string &folder, std::vector< std::string > &file_names, bool sort=true)
Definition: FileIO.cpp:97
static void ReadCSV(Vector3d &values, const std::string &filename, char delimiter=';')
Definition: FileIO.cpp:12
static void WriteCSVMatlab(DirectedGraph &graph, const std::string &file_name, char delimiter=';')
Definition: FileIO.cpp:131