Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,9 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
| 2 |
import pandas as pd
|
| 3 |
|
|
|
|
|
|
|
| 4 |
st.markdown("""
|
| 5 |
<style>
|
| 6 |
/* Set full-page width and remove Streamlit default padding */
|
|
@@ -37,3 +40,7 @@ st.markdown("""
|
|
| 37 |
st.markdown('<h2 style="text-align: center;"><span style="color:#003366;">Welcome to Image Augmentation </span></h2>', unsafe_allow_html=True)
|
| 38 |
|
| 39 |
st.markdown("<br>", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
import numpy as np
|
| 3 |
import pandas as pd
|
| 4 |
|
| 5 |
+
import cv2
|
| 6 |
+
|
| 7 |
st.markdown("""
|
| 8 |
<style>
|
| 9 |
/* Set full-page width and remove Streamlit default padding */
|
|
|
|
| 40 |
st.markdown('<h2 style="text-align: center;"><span style="color:#003366;">Welcome to Image Augmentation </span></h2>', unsafe_allow_html=True)
|
| 41 |
|
| 42 |
st.markdown("<br>", unsafe_allow_html=True)
|
| 43 |
+
|
| 44 |
+
st.markdown('<h4 style="text-align: center;"><span style="color:#003366;">Upload the image </span></h4>', unsafe_allow_html=True)
|
| 45 |
+
|
| 46 |
+
|