Bugfix when calling destructor without a running thread

This commit is contained in:
Tim Zeuner 2023-01-15 22:36:27 +01:00
parent 1fd6853245
commit bbc154efe2

View File

@ -19,7 +19,10 @@ LFR::LFR(int videoHeight, int videoWidth, int thresholdBinary, int gaussKernelSi
LFR::~LFR()
{
endLoop();
thread->join();
if(thread)
{
thread->join();
}
}
void LFR::removeListener(LFR::ListenerKey key)