ermig1979 / Simd

C++ image processing and machine learning library with using of SIMD: SSE, AVX, AVX-512, AMX for x86/x64, VMX(Altivec) and VSX(Power7) for PowerPC, NEON for ARM.
http://ermig1979.github.io/Simd
MIT License
2.03k stars 406 forks source link

How to only tracking regions brighter than background ? #191

Closed trlsmax closed 2 years ago

trlsmax commented 2 years ago

Hi, In motion detector, how to only tracking regions brighter than background, not just differenct to background?

ermig1979 commented 2 years ago

Hi! I think that this condition is too specific for common use motion detector. You can add external filter to remove dark objects.

trlsmax commented 2 years ago

Thank you.