Open TheMasterRoot opened 5 years ago
I have implemented your tracker to trace the direction of people movement. It is working perfectly, but is there any way to keep the trajectory in the frame. Actually as per your when the object disappears from the frame the trajectory is also becoming invisible. "sendtoadithyaraj@gmail.com" this is my email id. Anyone who knows please help me.
Hey @adithya6aj , have you solved this problem? I am facing the same issue...
Hello my name is Jasar. i tryed to implement your tracker into my facial detection code i just did it: i imported tracker in my main
from tracker import Tracker
and i started the object like it:tracker = Tracker(cfg.trackerDistanceThreshold, cfg.trackerMaxFrameSkip, cfg.trackerTraceLenght, cfg.trackIdCount
) where cfg. variables are on a config file.in fame read while im using haar face detection the it return to me x,y,w,h i converted it to a np array centerpoint whit this function:
and in my main after detect faces i used the tracker object like it:
centers = func.transformBoxesToCenters(detectedFaces)
and used you function to print on screen the tracker central point
my script runs and open the window but the tracker point only moves on a diagonal (45º) line
could you help me to fix it please?