Rolling 20220417

This commit is contained in:
jomjol
2022-04-17 21:51:26 +02:00
parent ccb4bd595c
commit cce812ff11
23 changed files with 378 additions and 92 deletions

View File

@@ -11,6 +11,7 @@ enum t_CNNType {
Digital,
DigitalHyprid,
DigitalHyprid10,
DoubleHyprid10,
None
};
@@ -20,6 +21,7 @@ class ClassFlowCNNGeneral :
protected:
t_CNNType CNNType;
std::vector<general*> GENERAL;
float CNNGoodThreshold;
string cnnmodelfile;
int modelxsize, modelysize;
@@ -44,7 +46,7 @@ public:
bool doFlow(string time);
string getHTMLSingleStep(string host);
string getReadout(int _analog, bool _extendedResolution);
string getReadout(int _analog, bool _extendedResolution = false, int prev = -1);
void DrawROI(CImageBasis *_zw);