You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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. "[email protected]" this is my email id. Anyone who knows please help me.
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?
The text was updated successfully, but these errors were encountered: