amoudgl / mosse-tracker

Implementation of MOSSE tracker in MATLAB: Visual Object Tracking using Adaptive Correlation Filters (CVPR 2010)
MIT License
82 stars 25 forks source link

Have you implemented the epsilon (the regularization paramter)? #2

Closed mangoocmt closed 6 years ago

amoudgl commented 6 years ago

No, regularization parameter, as stated in the paper for producing more stable ASEF filters has not been implemented. However, an epsilon parameter eps is used to preprocess image by taking reference from the OpenCV implementation:

https://github.com/opencv/opencv/blob/master/samples/python/mosse.py

mangoocmt commented 6 years ago

Thank you very much.