Omnibus commited on
Commit
8d5c6cf
·
1 Parent(s): 1ee735f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -63
app.py CHANGED
@@ -29,63 +29,23 @@ def rem_cv(inp):
29
 
30
  while True:
31
  ret, frame = cap.read()
32
-
33
  fgmask = fgbg.apply(frame)
34
  fgmask = cv2.morphologyEx(fgmask, cv2.MORPH_OPEN, kernel)
35
  yield (fgmask)
36
 
37
- def get_rate(vid_in):
38
- cap = cv2.VideoCapture(vid_in)
39
-
40
- while(cap.isOpened()):
41
-
42
- # Capture frame-by-frame
43
-
44
- ret, frame = cap.read()
45
-
46
- # if video finished or no Video Input
47
- if not ret:
48
- break
49
-
50
- # Our operations on the frame come here
51
- gray = frame
52
-
53
- # resizing the frame size according to our need
54
- gray = cv2.resize(gray, (500, 300))
55
-
56
- # font which we will be using to display FPS
57
- font = cv2.FONT_HERSHEY_SIMPLEX
58
- # time when we finish processing for this frame
59
- new_frame_time = time.time()
60
-
61
- # Calculating the fps
62
-
63
- # fps will be number of frame processed in given time frame
64
- # since their will be most of time error of 0.001 second
65
- # we will be subtracting it to get more accurate result
66
- fps = 1/(new_frame_time-prev_frame_time)
67
- prev_frame_time = new_frame_time
68
-
69
-
70
  def load_video(vid):
71
  new_video_in = str(vid)
72
  capture = cv2.VideoCapture(new_video_in)
73
  fps = capture.get(cv2.CAP_PROP_FPS)
74
- print (f'FPS:: {fps}')
75
  frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
76
  capture.release()
 
77
 
78
-
79
-
80
-
81
- return frame_count
82
-
83
-
84
-
85
- def capture_function(vid=None,frame_count=None):
86
  new_video_in = str(vid)
87
  capture = cv2.VideoCapture(new_video_in)
88
- #frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
89
 
90
  fbox=[]
91
  cnt=0
@@ -97,18 +57,14 @@ def capture_function(vid=None,frame_count=None):
97
  cv2.imwrite(f'{uid}/{i}.png',frame_ff)
98
  fbox.append(f'{uid}/{i}.png')
99
 
100
- #capture.set(cv2.CAP_PROP_POS_FRAMES, int(frame_count)-1)
101
- #ret, frame_f = capture.read()
102
- #frame_ff = cv2.cvtColor(frame_f, cv2.COLOR_BGR2RGB)
103
- #cv2.imwrite(f'{uid}/{int(frame_count)-1}.png',frame_ff)
104
- #fbox.append(f'{uid}/{int(frame_count)-1}.png')
105
- #capture.release()
106
  return fbox,fbox
107
 
108
 
109
- def rem_bg(vid,frame_count):
110
  new_video_in = str(vid)
111
  capture = cv2.VideoCapture(new_video_in)
 
 
112
  fbox2=[]
113
  cnt=0
114
  frame_count1= int(frame_count)
@@ -121,16 +77,7 @@ def rem_bg(vid,frame_count):
121
  cv2.imwrite(f'{uid}-rembg/{i}.png',out)
122
  fbox2.append(f'{uid}-rembg/{i}.png')
123
  yield fbox2
124
- #capture.set(cv2.CAP_PROP_POS_FRAMES, int(frame_count)-1)
125
- #ret, frame_f = capture.read()
126
- #frame_ff = cv2.cvtColor(frame_f, cv2.COLOR_BGR2RGB)
127
- #cv2.imwrite(f'{uid}/{int(frame_count)-1}.png',frame_ff)
128
- #fbox.append(f'{uid}/{int(frame_count)-1}.png')
129
- #capture.release()
130
- #out = cv2.VideoWriter('video.avi',cv2.VideoWriter_fourcc(*'DIVX'), 15, size)
131
- #return fbox2
132
-
133
-
134
 
135
 
136
 
@@ -172,13 +119,16 @@ def dl(inp):
172
 
173
  with gr.Blocks() as app:
174
  with gr.Tab("Load"):
 
175
  inp_url = gr.Textbox()
176
  go_btn = gr.Button("Run")
177
  with gr.Row():
178
  with gr.Column():
179
  outp_vid=gr.Video()
180
  with gr.Column():
181
- frame_count=gr.Textbox()
 
 
182
  outp_file=gr.Files()
183
  with gr.Tab("Frames"):
184
  frame_btn = gr.Button("Get Frames")
@@ -200,7 +150,7 @@ with gr.Blocks() as app:
200
  text_input=gr.Textbox()
201
  text_output=gr.Textbox()
202
  url_params=gr.JSON()
203
- outp_vid.change(load_video,outp_vid,frame_count)
204
  frame_btn.click(capture_function,[outp_vid,frame_count],[frame_gal,frame_file])
205
  rem_btn.click(rem_bg,[outp_vid,frame_count],rem_vid)
206
  go_btn.click(dl,inp_url,[outp_vid,in_vid,outp_file])
 
29
 
30
  while True:
31
  ret, frame = cap.read()
 
32
  fgmask = fgbg.apply(frame)
33
  fgmask = cv2.morphologyEx(fgmask, cv2.MORPH_OPEN, kernel)
34
  yield (fgmask)
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  def load_video(vid):
37
  new_video_in = str(vid)
38
  capture = cv2.VideoCapture(new_video_in)
39
  fps = capture.get(cv2.CAP_PROP_FPS)
40
+ #print (f'FPS:: {fps}')
41
  frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
42
  capture.release()
43
+ return frame_count, fps
44
 
45
+ def capture_function(vid=None):
 
 
 
 
 
 
 
46
  new_video_in = str(vid)
47
  capture = cv2.VideoCapture(new_video_in)
48
+ frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
49
 
50
  fbox=[]
51
  cnt=0
 
57
  cv2.imwrite(f'{uid}/{i}.png',frame_ff)
58
  fbox.append(f'{uid}/{i}.png')
59
 
 
 
 
 
 
 
60
  return fbox,fbox
61
 
62
 
63
+ def rem_bg(vid):
64
  new_video_in = str(vid)
65
  capture = cv2.VideoCapture(new_video_in)
66
+ frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
67
+
68
  fbox2=[]
69
  cnt=0
70
  frame_count1= int(frame_count)
 
77
  cv2.imwrite(f'{uid}-rembg/{i}.png',out)
78
  fbox2.append(f'{uid}-rembg/{i}.png')
79
  yield fbox2
80
+
 
 
 
 
 
 
 
 
 
81
 
82
 
83
 
 
119
 
120
  with gr.Blocks() as app:
121
  with gr.Tab("Load"):
122
+
123
  inp_url = gr.Textbox()
124
  go_btn = gr.Button("Run")
125
  with gr.Row():
126
  with gr.Column():
127
  outp_vid=gr.Video()
128
  with gr.Column():
129
+ with gr.Row():
130
+ frame_count=gr.Textbox(label="Frame Count",interactive = False)
131
+ fps=gr.Textbox(label="FPS",interactive = False)
132
  outp_file=gr.Files()
133
  with gr.Tab("Frames"):
134
  frame_btn = gr.Button("Get Frames")
 
150
  text_input=gr.Textbox()
151
  text_output=gr.Textbox()
152
  url_params=gr.JSON()
153
+ outp_vid.change(load_video,outp_vid,[frame_count,fps])
154
  frame_btn.click(capture_function,[outp_vid,frame_count],[frame_gal,frame_file])
155
  rem_btn.click(rem_bg,[outp_vid,frame_count],rem_vid)
156
  go_btn.click(dl,inp_url,[outp_vid,in_vid,outp_file])