Last active
May 10, 2021 16:01
-
-
Save Kakarot-2000/248c61a76130e3e81c7855f6c3b26760 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model = model_from_json(open("fer.json", "r").read()) #load model | |
model.load_weights('fer.h5') #load weights | |
face_haar_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') | |
camera = cv2.VideoCapture(0) | |
app = Flask(__name__) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment