1.0.0-rc.66
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user