fixed metadata parser with user_id

This commit is contained in:
2022-05-05 19:07:33 +02:00
parent 6ecc79257b
commit eb480c82d9
2 changed files with 61 additions and 23 deletions
+7 -1
View File
@@ -17,15 +17,21 @@ struct DetWriterConfig {
return {
config_parameters["detector_name"].GetString(),
config_parameters["detector_type"].GetString(),
config_parameters["n_modules"].GetInt(),
config_parameters["image_height"].GetInt(),
config_parameters["image_width"].GetInt(),
config_parameters["bit_depth"].GetInt(),
config_parameters["start_udp_port"].GetInt(),
config_parameters["bit_depth"].GetInt()
};
}
const std::string detector_name;
const std::string detector_type;
const int n_modules;
const int image_height;
const int image_width;
const int start_udp_port;
const int bit_depth;
};