mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2026-01-31 23:00:53 +03:00
Waitmissing for missing memory
This commit is contained in:
@@ -116,7 +116,7 @@ string ClassFlowAlignment::getHTMLSingleStep(string host)
|
||||
bool ClassFlowAlignment::doFlow(string time)
|
||||
{
|
||||
if (!ImageTMP)
|
||||
ImageTMP = new CImageBasis(ImageBasis);
|
||||
ImageTMP = new CImageBasis(ImageBasis, 5);
|
||||
|
||||
if (AlignAndCutImage)
|
||||
delete AlignAndCutImage;
|
||||
|
||||
@@ -23,7 +23,7 @@ void ClassFlowAnalog::SetInitialParameter(void)
|
||||
modelysize = 1;
|
||||
ListFlowControll = NULL;
|
||||
previousElement = NULL;
|
||||
SaveAllFiles = true;
|
||||
SaveAllFiles = false;
|
||||
}
|
||||
|
||||
ClassFlowAnalog::ClassFlowAnalog(std::vector<ClassFlow*>* lfc) : ClassFlowImage(lfc, TAG)
|
||||
|
||||
@@ -202,15 +202,11 @@ bool ClassFlowControll::doFlow(string time)
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////
|
||||
int aInternalFreeHeapSizeAtEnd, aInternalFreeHeapSizeAtStart;
|
||||
aInternalFreeHeapSizeAtStart = getInternalESPHeapSize();
|
||||
|
||||
if (flowcontrolldebugdetail){
|
||||
std::string aStartEspInfoStr = "ClassFlowAnalog::doFlow - Start: " + getESPHeapInfo();
|
||||
LogFile.WriteToFile(aStartEspInfoStr);
|
||||
}
|
||||
|
||||
aInternalFreeHeapSizeAtEnd = getInternalESPHeapSize();
|
||||
if (flowcontrolldebugdetail){
|
||||
std::string aStartEspInfoStr = "ClassFlowAnalog::doFlow - Now : " + getESPHeapInfo();
|
||||
LogFile.WriteToFile(aStartEspInfoStr);
|
||||
@@ -241,7 +237,6 @@ bool ClassFlowControll::doFlow(string time)
|
||||
result = true;
|
||||
}
|
||||
|
||||
aInternalFreeHeapSizeAtEnd = getInternalESPHeapSize();
|
||||
if (flowcontrolldebugdetail){
|
||||
std::string aStartEspInfoStr = "ClassFlowAnalog::doFlow - Now : " + getESPHeapInfo();
|
||||
LogFile.WriteToFile(aStartEspInfoStr);
|
||||
|
||||
@@ -24,7 +24,7 @@ void ClassFlowDigit::SetInitialParameter(void)
|
||||
modelysize = 1;
|
||||
ListFlowControll = NULL;
|
||||
previousElement = NULL;
|
||||
SaveAllFiles = true;
|
||||
SaveAllFiles = false;
|
||||
}
|
||||
|
||||
ClassFlowDigit::ClassFlowDigit() : ClassFlowImage(TAG)
|
||||
|
||||
Reference in New Issue
Block a user