georgmartius / vid.stab

Video stabilization library
http://public.hronopik.de/vid.stab/
Other
838 stars 110 forks source link

Fix warning related to inappropriate use of fabs. #96

Closed gabilan closed 3 years ago

gabilan commented 3 years ago

This small patch fixes build warnings related to using fabs with integer inputs. By switching to use of abs, one can expect a small performance improvement (abs is ~25% faster than fabs) on a hot code path.

georgmartius commented 3 years ago

Thanks a lot!