comprehensive update

1) remove unused components: camera view (due it causes segmentation faults), compute resources and all related, illuminator controller (due in useless without camera view), image storage service, temperature and humidity service
2) database schema - reduce tables references, features storing in records themselves in compressed form, add records creation and editing date and time, add separator comment column
3) analysis - rework of pipeline and ui, now database storing only raw data and all display values calculated from it
4) lights service - add reconnection if disconnected
5) add width and height command line arguments
6) fix some typos and other issues
This commit is contained in:
2026-06-29 15:13:29 +03:00
parent caee9fafd5
commit 72ae26eee7
74 changed files with 5219 additions and 4248 deletions
+6 -8
View File
@@ -27,10 +27,6 @@ public static class DependencyInjectionHelper
.AddSingleton<AmineContentView>()
// Core
.AddSingleton<GSS2.UI.Core.ViewModels.MainWindowViewModel>()
.AddSingleton<GSS2.UI.Core.ViewModels.CameraViewModel>()
.AddSingleton<GSS2.UI.Core.ViewModels.IlluminatorControllerViewModel>()
.AddSingleton<GSS2.UI.Core.Views.CameraView>()
.AddSingleton<GSS2.UI.Core.Views.IlluminatorControllerView>()
// База
.AddSingleton<ViewModels.DeleteConfirmViewModel>()
.AddSingleton<ViewModels.NumericKeyboardViewModel>()
@@ -38,16 +34,18 @@ public static class DependencyInjectionHelper
.AddSingleton<Views.NumericKeyboardView>()
// Общие
.AddSingleton<ViewModels.Common.SystemViewModel>()
.AddSingleton<ViewModels.Common.CameraViewModel>()
.AddSingleton<Views.Common.SystemView>()
.AddSingleton<Views.Common.CameraView>()
// .AddSingleton<ViewModels.Common.CameraViewModel>()
// .AddSingleton<Views.Common.SystemView>()
// .AddSingleton<Views.Common.CameraView>()
// AmineContent
.AddSingleton<ViewModels.AmineContent.StartViewModel>()
.AddSingleton<ViewModels.AmineContent.AnalysisViewModel>()
.AddSingleton<ViewModels.AmineContent.SampleCalibrationViewModel>()
.AddSingleton<ViewModels.AmineContent.SeparatorCalibrationViewModel>()
.AddSingleton<ViewModels.AmineContent.BrandCalibrationViewModel>()
.AddSingleton<Views.AmineContent.StartView>()
.AddSingleton<Views.AmineContent.AnalysisView>()
.AddSingleton<Views.AmineContent.SampleCalibrationView>()
.AddSingleton<Views.AmineContent.SeparatorCalibrationView>();
.AddSingleton<Views.AmineContent.SeparatorCalibrationView>()
.AddSingleton<Views.AmineContent.BrandCalibrationView>();
}