Rolling 20220526

This commit is contained in:
jomjol
2022-05-26 20:31:26 +02:00
parent cce812ff11
commit 00028010ee
203 changed files with 12003 additions and 1226 deletions

View File

@@ -87,6 +87,19 @@ void CTfLiteClass::GetInputDimension(bool silent = false)
}
}
int CTfLiteClass::ReadInputDimenstion(int _dim)
{
if (_dim == 0)
return im_width;
if (_dim == 1)
return im_height;
if (_dim == 2)
return im_channel;
return -1;
}
int CTfLiteClass::GetAnzOutPut(bool silent)
{

View File

@@ -71,5 +71,6 @@ class CTfLiteClass
float GetOutputValue(int nr);
void GetInputDimension(bool silent);
int ReadInputDimenstion(int _dim);
};