* Added python support. Enable using
console
cmake -DRSID_PY=ON -DRSID_PREVIEW=ON ..
Example authenticate code:
python
def on_result(result, user_id):
print('on_result', result)
if result == rsid_py.AuthenticateStatus.Success:
print('Authenticated user:', user_id)
def on_faces(faces, timestamp):
print(f'detected {len(faces)} face(s)')
for f in faces:
print(f'\tface {f.x},{f.y} {f.w}x{f.h}')
with rsid_py.FaceAuthenticator(PORT) as f:
f.authenticate(on_faces=on_faces, on_result=on_result)
* See the [samples](https://github.com/IntelRealSense/RealSenseID/tree/master/samples/python) for build instructions and code samples to get started.