forked from sightmachine/SimpleCV
-
Notifications
You must be signed in to change notification settings - Fork 4
Bug in LKTracker. #5
Copy link
Copy link
Open
Description
There is a bug which needs to be fixed in LKTracker. https://github.com/jayrambhia/SimpleCV/blob/develop/SimpleCV/Tracking/LKTracker.py#L142
if not dx or not dy:
track = LK(img, bb, new_pts)
return track
This should be LKTrack(img, bb, new_pts)
Reactions are currently unavailable