1.0.0-rc.66

This commit is contained in:
2025-07-18 11:42:39 +02:00
parent d42c606e5d
commit 51cbef4c84
170 changed files with 805 additions and 277 deletions

View File

@@ -159,7 +159,8 @@ void ImageAnalysisCPU::Analyze(DataMessage &output,
output.spots.push_back(spot);
if ((indexer != nullptr) && spot_finding_settings.indexing) {
auto latt = indexer->Run(output, spots_out);
auto latt_f = indexer->Run(experiment, output, spots_out);
auto latt = latt_f.get();
if (latt && spot_finding_settings.quick_integration) {
auto img = CompressedImage(updated_image, experiment.GetXPixelsNum(),
experiment.GetYPixelsNum());
@@ -188,7 +189,7 @@ ImageAnalysisCPU &ImageAnalysisCPU::NeuralNetInference(NeuralNetInferenceClient
return *this;
}
ImageAnalysisCPU &ImageAnalysisCPU::SetIndexer(Indexer *new_indexer) {
ImageAnalysisCPU &ImageAnalysisCPU::SetIndexer(IndexerThreadPool *new_indexer) {
indexer = new_indexer;
return *this;
}