marcotam commited on
Commit
4f14bd8
·
1 Parent(s): 7b768ee

Upload webapp.py

Browse files
Files changed (1) hide show
  1. webapp.py +8 -10
webapp.py CHANGED
@@ -3,16 +3,10 @@ import similarity_check as sc
3
  import cv2
4
  from PIL import Image
5
  import numpy as np
6
- import tempfile
7
  from streamlit_webrtc import VideoTransformerBase, webrtc_streamer
8
  import demo
9
- import time
10
  import streamlit as st
11
- import requests
12
- import json
13
  import request_json.sbt_request_generator as sbt
14
- import pathlib
15
- import os
16
  import check_hkid_validity as chv
17
  import search_engine as se
18
 
@@ -137,10 +131,14 @@ def main():
137
  # Capture frame-by-frame
138
  # Grab a single frame of video
139
  ret, frame = camera.read()
140
-
141
- result, process_this_frame, face_locations, faces, face_names, score = demo.process_frame(frame, process_this_frame, face_locations, faces, face_names, score)
142
- # Display the resulting image
143
- FRAME_WINDOW.image(result)
 
 
 
 
144
 
145
  print(score)
146
  if len(score) > 20:
 
3
  import cv2
4
  from PIL import Image
5
  import numpy as np
 
6
  from streamlit_webrtc import VideoTransformerBase, webrtc_streamer
7
  import demo
 
8
  import streamlit as st
 
 
9
  import request_json.sbt_request_generator as sbt
 
 
10
  import check_hkid_validity as chv
11
  import search_engine as se
12
 
 
131
  # Capture frame-by-frame
132
  # Grab a single frame of video
133
  ret, frame = camera.read()
134
+
135
+ if ret:
136
+ result, process_this_frame, face_locations, faces, face_names, score = demo.process_frame(frame, process_this_frame, face_locations, faces, face_names, score)
137
+ # Display the resulting image
138
+ FRAME_WINDOW.image(result)
139
+ else:
140
+ print("there is no frame detected")
141
+ continue
142
 
143
  print(score)
144
  if len(score) > 20: