Skip to content

Instantly share code, notes, and snippets.

@shriyaRam
Last active March 13, 2021 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shriyaRam/43ad9141b26722aeb67e4c308b6b70f1 to your computer and use it in GitHub Desktop.
Save shriyaRam/43ad9141b26722aeb67e4c308b6b70f1 to your computer and use it in GitHub Desktop.
Gesture recognition
import pyttsx3
from predict import *
from agora_community_sdk import AgoraRTC
client = AgoraRTC.create_watcher("ab8078b5b58e4835af33a37580dbc864", "chromedriver.exe")
client.join_channel("test")
users = client.get_users() # Gets references to everyone participating in the call
user1 = users[0] # Can reference users in a list
binary_image = user1.frame
with open("ASL.jpg") as f:
f.write(binary_image)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment