jfjoch_broker: Measure preprocessing time for images

This commit is contained in:
2026-04-21 16:12:43 +02:00
parent 3e30872c3c
commit 15be4ff6d7
9 changed files with 36 additions and 6 deletions
+2 -1
View File
@@ -766,7 +766,8 @@ int main(int argc, char **argv) {
}
auto image_mean_time = plots.GetMeanProcessingTime();
logger.Info("Per-image time: (mean; microseconds): spot finding {:.0f} indexing {:.0f} refinement {:.0f} prediction {:.0f} integration {:.0f} total {:.0f}",
logger.Info("Per-image time: (mean; microseconds): preprocess {:.0f} spot finding {:.0f} indexing {:.0f} refinement {:.0f} prediction {:.0f} integration {:.0f} total {:.0f}",
image_mean_time.preprocessing * 1e6,
image_mean_time.spot_finding * 1e6,
image_mean_time.indexing * 1e6,
image_mean_time.refinement * 1e6,