Fix bug to allow larger clusters

This commit is contained in:
2023-03-17 15:34:08 +01:00
parent 943a85cbd5
commit 1bd813d620
5 changed files with 43 additions and 16 deletions

View File

@ -69,6 +69,11 @@ class threadedAnalogDetector {
};
virtual double setThreshold(double th) { return det->setThreshold(th); };
virtual double setClusterSize(int csx, int csy) {
//cout << "44" << endl;
return det->setClusterSize(csx);
};
virtual void setROI(int xmin, int xmax, int ymin, int ymax) {
det->setROI(xmin, xmax, ymin, ymax);
};