Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,29 @@ def rem_bg(vid):
|
|
76 |
print (i)
|
77 |
cv2.imwrite(f'{uid}-rembg/{i}.png',out)
|
78 |
fbox2.append(f'{uid}-rembg/{i}.png')
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
|
82 |
|
@@ -145,6 +167,7 @@ with gr.Blocks() as app:
|
|
145 |
in_vid=gr.Video()
|
146 |
with gr.Column():
|
147 |
#rem_vid=gr.Video()
|
|
|
148 |
rem_vid=gr.Gallery(columns=6)
|
149 |
with gr.Row(visible=False):
|
150 |
text_input=gr.Textbox()
|
@@ -152,7 +175,7 @@ with gr.Blocks() as app:
|
|
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_gal,frame_file])
|
155 |
-
rem_btn.click(rem_bg,[outp_vid],rem_vid)
|
156 |
go_btn.click(dl,inp_url,[outp_vid,in_vid,outp_file])
|
157 |
app.load(fn=predict, inputs=[text_input,url_params], outputs=[text_output,text_input],_js=load_js)
|
158 |
app.launch()
|
|
|
76 |
print (i)
|
77 |
cv2.imwrite(f'{uid}-rembg/{i}.png',out)
|
78 |
fbox2.append(f'{uid}-rembg/{i}.png')
|
79 |
+
frame_num=f'Working on {i+1} of {frame_count}'
|
80 |
+
yield fbox2,frame_num
|
81 |
+
|
82 |
+
|
83 |
+
def im_2_vid():
|
84 |
+
width, height = Image.open(images[0]).size
|
85 |
+
size = (width, height)
|
86 |
+
codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
|
87 |
+
if (len(sys.argv) < 2 and n > 0):
|
88 |
+
video = cv2.VideoWriter(vidName, codec, nfs, (W, H))
|
89 |
+
else:
|
90 |
+
video = cv2.VideoWriter(vidName, codec, nfs, size)
|
91 |
+
|
92 |
+
#Do not open images in 'Image' as well as 'CV2', else following error occurs
|
93 |
+
#<built-in function imread> returned NULL without setting an error
|
94 |
+
for img in images:
|
95 |
+
#In case images are of different size, resize them to user specified values
|
96 |
+
if (len(sys.argv) < 2 and n > 0):
|
97 |
+
newImg = cv2.imread(img)
|
98 |
+
newImg = cv2.resize(newImg, (W, H))
|
99 |
+
video.write(newImg)
|
100 |
+
else:
|
101 |
+
video.write(img)
|
102 |
|
103 |
|
104 |
|
|
|
167 |
in_vid=gr.Video()
|
168 |
with gr.Column():
|
169 |
#rem_vid=gr.Video()
|
170 |
+
frame_num=gr.Textbox(label="Progress")
|
171 |
rem_vid=gr.Gallery(columns=6)
|
172 |
with gr.Row(visible=False):
|
173 |
text_input=gr.Textbox()
|
|
|
175 |
url_params=gr.JSON()
|
176 |
outp_vid.change(load_video,outp_vid,[frame_count,fps])
|
177 |
frame_btn.click(capture_function,[outp_vid],[frame_gal,frame_file])
|
178 |
+
rem_btn.click(rem_bg,[outp_vid],[rem_vid,frame_num])
|
179 |
go_btn.click(dl,inp_url,[outp_vid,in_vid,outp_file])
|
180 |
app.load(fn=predict, inputs=[text_input,url_params], outputs=[text_output,text_input],_js=load_js)
|
181 |
app.launch()
|