public SpeechDisordersDetector(
            IAudioService audioService,
            IFileWorkerService fileWorkerService,
            IFeatureExtractorService featureExtractorService,
            INeuralNetworkService neuralNetworkService,
            IBaseWorker baseWorker)
        {
            _audioService            = audioService;
            _fileWorkerService       = fileWorkerService;
            _featureExtractorService = featureExtractorService;
            _neuralNetworkService    = neuralNetworkService;
            _baseWorker = baseWorker;

            InitializeComponent();
        }
Ejemplo n.º 2
0
 public LogService(IFileWorkerService fileService, ILoggingSettings settings)
 {
     modFileWorkerService = fileService;
     modLoggingSettings   = settings;
 }
Ejemplo n.º 3
0
 public FeatureExtractorService(IFileWorkerService fileWorkerService, IAudioService audioSevice)
 {
     _fileWorkerService = fileWorkerService;
     _audioService      = audioSevice;
 }
 public AudioService(IFileWorkerService fileWorkerService)
 {
     _fileWorkerService = fileWorkerService;
 }
 public BaseWorker(IFeatureExtractorService featureExtractorService, IFileWorkerService fileWorkerService)
 {
     _fileWorkerService       = fileWorkerService;
     _featureExtractorService = featureExtractorService;
 }
Ejemplo n.º 6
0
		public LogService(IFileWorkerService fileService, ILoggingSettings settings)
		{
			modFileWorkerService = fileService;
			modLoggingSettings = settings;
		}