forked from Cuda-Chen/fish-yolo-grabcut
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.py
35 lines (26 loc) · 1.14 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
import cv2 as cv
from utils import yolo, GrabCut
import numpy as np
import streamlit as st
def run():
yolopath = "./yolo-fish"
confidence = 0.25
threshold = 0.45
st.title("fish YOLO + GrabCut demo")
uploaded_img = st.file_uploader("Choose an image...", type=['png', 'jpg', 'bmp', 'jpeg'])
if uploaded_img is not None:
file_bytes = np.asarray(bytearray(uploaded_img.read()), dtype=np.uint8)
image = cv.imdecode(file_bytes, 1)
st.write("This is your uploaded image:")
st.image(image, caption='Uploaded Image', channels="BGR", use_column_width=True)
boxes, idxs = yolo.runYOLOBoundingBoxes_streamlit(image, yolopath, confidence, threshold)
result_images = GrabCut.runGrabCut(image, boxes, idxs)
st.write("")
st.write("finish grabcut")
st.write(f"There are {len(result_images)} segmented fish image. Each listed as below:")
for i in range(len(result_images)):
#cv.imwrite(f'grabcut{i}.jpg', result_images[i])
st.image(result_images[i], channels="BGR", use_column_width=True)
if __name__ == '__main__':
run()