Hi Jonatan,
Thank you for the reply. I fear I made myself unclear in my first post. I have looked at most of the examples on the documentation of dv_processing and the demo is at this stage very similar to the feature tracking example presented there.
Basically, I would like to pass a custom feature detector to an instance of
dv::features::EventCombinedLKTracker::RegularTracker and hopefully be able to experiment with different feature detectors. By default this class uses a FAST corner detector with a threshold of 10, as I understand it.
I tried instantiating a FAST detector using OpenCV with a different threshold but to no results.
My questions are:
Firstly, how would I go about changing the threshold of the default implemented FAST detector?
Secondly, given a custom detector class, I suspect it needs to inherit from some abstract class implementing methods such as
detect(). Is there a specification on the requirements what an arbitrary detector class need to fulfill?
All the best and thank you for replying!
Johan