Esempio n. 1
0
 private bool Init(byte[] context, int sizeOfContext)  // Initialize the data using the possible context, it should be checked if context is not null if its mandatory for Init
 {
     SymptomBasedModule = new SymptomBasedDetection(this);
     SymptomBasedModule.Init(context, sizeOfContext);
     EpidemyModule = new EpidemyAlert(this);
     EpidemyModule.Init(context, sizeOfContext);
     ImageModule = new ImageProcessing(this);
     ImageModule.Init(context, sizeOfContext);
     SymptomModule = new SymptomLearning(this);
     SymptomModule.Init(context, sizeOfContext);
     return(true);
 }