Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added video processing support with automatic tracking start\reset #49

Open
wants to merge 4 commits into
base: no_openmdao
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed bug in face_dict_to_rect method
Serhiy-Shekhovtsov committed Jul 28, 2018
commit de63ad93a823c5131f3d26eee47d45558f9fd02e
4 changes: 2 additions & 2 deletions lib/processors_noopenmdao.py
Original file line number Diff line number Diff line change
@@ -260,8 +260,8 @@ def draw_face_rect(self):
def face_dict_to_rect(selfs, face_dict):
return (int(face_dict['x']),
int(face_dict['y']),
int(face_dict['h']),
int(face_dict['w']))
int(face_dict['w']),
int(face_dict['h']))

def is_face_close(self, face1, face2):
delta = .07