Add deep learning resolution estimation model from Stanford

This commit is contained in:
2024-02-08 20:15:29 +01:00
parent 1b4ab88f54
commit 8dcecb9685
49 changed files with 650 additions and 194 deletions

View File

@@ -1147,3 +1147,12 @@ std::chrono::nanoseconds DiffractionExperiment::GetDetectorDelay() const {
const DetectorSetup &DiffractionExperiment::GetDetectorSetup() const {
return detector;
}
DiffractionExperiment &DiffractionExperiment::NeuralNetModelPath(const std::string &input) {
neural_net_model_path = input;
return *this;
}
std::string DiffractionExperiment::GetNeuralNetModelPath() const {
return neural_net_model_path;
}