bugfix order of params from json config

This commit is contained in:
2022-01-05 23:45:45 +01:00
parent 9986d21e85
commit 48b68668f4
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -162,9 +162,9 @@ BufferUtils::DetectorConfig BufferUtils::read_json_config(
config_parameters["detector_name"].GetString(),
config_parameters["detector_type"].GetString(),
config_parameters["n_modules"].GetInt(),
config_parameters["bit_depth"].GetInt(),
config_parameters["image_height"].GetInt(),
config_parameters["image_width"].GetInt(),
config_parameters["bit_depth"].GetInt(),
config_parameters["start_udp_port"].GetInt(),
};
}