Skip to content

BUG: Quick fix for Mellin test

Antoine Regimbeau requested to merge quickfix_MellinTest into develop

Quick fix for Mellin test.
The issue might not be coming from OTB but rather from ITK or FFTW. This bug might occur in other situation but this is the best we have for now.

Bug description : At the end of the executable ffttw needs to clean its threads. During this process it needs to wait for its worker to finish their job, however during interaction with mutex/semaphore the WaitForSingleObject called on the first worker, is waiting an infinitely whereas we are already out of the computation step (images are already on the disk and compared). Thus the error...

Merge request reports