yashy3nugu/Sort-By-Face

imutils issue

Opened this issue · 0 comments

if you get the error "TypeError: Can't parse 'center'. Sequence item with index 0 has a wrong type"
within the imutils line 68 of facealigner.py

It is because eyesCenter is not np.int64 but needs to be int

Correct by changing eyesCenter to [int(x) for x in eyesCenter]