lampongyuen commited on
Commit
7fe02fe
·
1 Parent(s): 970a750

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -21,9 +21,9 @@ def enhance_details(img):
21
 
22
 
23
  def main_loop():
24
- st.title("OpenCV Demo App")
25
- st.subheader("This app allows you to play with Image filters!")
26
- st.text("We use OpenCV and Streamlit for this demo")
27
 
28
  blur_rate = st.sidebar.slider("Blurring", min_value=0.5, max_value=3.5)
29
  brightness_amount = st.sidebar.slider("Brightness", min_value=-50, max_value=50, value=0)
 
21
 
22
 
23
  def main_loop():
24
+ st.title("Modify Image")
25
+ st.subheader("This app allows you to blur, increase brightness or enhance details of an image")
26
+ st.text("It uses Stremlit and OpenCV")
27
 
28
  blur_rate = st.sidebar.slider("Blurring", min_value=0.5, max_value=3.5)
29
  brightness_amount = st.sidebar.slider("Brightness", min_value=-50, max_value=50, value=0)