created Preprocessing check if true

deactivate in header.h
This commit is contained in:
Raphael Maenle
2018-01-20 11:58:32 +01:00
parent 7a3b33455d
commit 9863c8b9e8
5 changed files with 39 additions and 12 deletions

View File

@ -44,8 +44,9 @@ public:
bool PreProcessing()
{
createBox(); createp_box();
dp.PreProcessing({cols,rows}, nullptr);
a1.PreProcessing({cols,rows}, &p_myBox);
if(!dp.PreProcessing({cols,rows}, nullptr)) return false;
if(!a1.PreProcessing({cols,rows}, &p_myBox)) return false;
return true;
}