bit depth in det writer config

This commit is contained in:
2021-12-16 13:37:32 +01:00
parent 0116d0997c
commit 6a321b2bac
@@ -17,12 +17,14 @@ struct DetWriterConfig {
return {
config_parameters["detector_name"].GetString(),
config_parameters["bit_depth"].GetInt(),
config_parameters["image_height"].GetInt(),
config_parameters["image_width"].GetInt(),
};
}
const std::string detector_name;
const int bit_depth;
const int image_height;
const int image_width;
};