cell histogram

This commit is contained in:
EugeneTes
2026-04-07 14:52:20 +02:00
parent 371436d0c3
commit 931de47164
17 changed files with 917 additions and 11 deletions

View File

@@ -1,3 +1,4 @@
using LindtLeerformPlugin.Services;
using Ninject;
using VisionBuilder.UI.Common;
using VisionBuilder.UI.Common.Plugins;
@@ -25,6 +26,10 @@ public class Plugin : IPlugin
kernel.Bind<LeerformRecognitionControlSettings, BaseRecognitionControlSettings, ISettings>()
.ToConstant(new LeerformRecognitionControlSettings(cameraName));
kernel.Bind<LeerformPatternRecognitionService>().ToSelf().InSingletonScope();
kernel.Bind<LeerformRecipeStore>().ToSelf().InSingletonScope();
kernel.Rebind<IRecognitionControl>()
.To<LeerformRecognitionControl>()
.InSingletonScope();