Spaces:
Sleeping
Sleeping
Update app/exterior.py
Browse files- app/exterior.py +12 -12
app/exterior.py
CHANGED
|
@@ -125,9 +125,9 @@ def app(pipeline):
|
|
| 125 |
|
| 126 |
@st.dialog("Choose Weather")
|
| 127 |
def add_weather():
|
| 128 |
-
weather_photos = [
|
| 129 |
-
|
| 130 |
-
|
| 131 |
weather_caps = ['Sunny', "Rainy", "Cloudy", "Foggy", "Snowy", "Storm"]
|
| 132 |
weather_selection = image_select(label='',
|
| 133 |
images= weather_photos,
|
|
@@ -145,10 +145,10 @@ def app(pipeline):
|
|
| 145 |
@st.dialog("Time of Day")
|
| 146 |
def add_day():
|
| 147 |
day_photos = [
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
]
|
| 153 |
|
| 154 |
day_caps = ["Sunrise", "Mid day", "Sunset", "Night"]
|
|
@@ -168,11 +168,11 @@ def app(pipeline):
|
|
| 168 |
|
| 169 |
@st.dialog("Landscape")
|
| 170 |
def add_landscape():
|
| 171 |
-
landscape_photos = [
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
|
| 177 |
landscape_caps = ["Urban", "Suburban", "Coastal", "Grassland", 'Forest',
|
| 178 |
'Tropical', "Desert", "Mountain", "Swamp", "Polar"]
|
|
|
|
| 125 |
|
| 126 |
@st.dialog("Choose Weather")
|
| 127 |
def add_weather():
|
| 128 |
+
weather_photos = ["app/asset/images/weather/Sunny.jpg", "app/asset/images/weather/Rainy.jpg",
|
| 129 |
+
"app/asset/images/weather/Cloudy.jpg", "app/asset/images/weather/Foggy.jpg",
|
| 130 |
+
"app/asset/images/weather/Snowy.jpg", "app/asset/images/weather/Storm.jpg"]
|
| 131 |
weather_caps = ['Sunny', "Rainy", "Cloudy", "Foggy", "Snowy", "Storm"]
|
| 132 |
weather_selection = image_select(label='',
|
| 133 |
images= weather_photos,
|
|
|
|
| 145 |
@st.dialog("Time of Day")
|
| 146 |
def add_day():
|
| 147 |
day_photos = [
|
| 148 |
+
"app/asset/images/time of day/sunrise.jpg",
|
| 149 |
+
"app/asset/images/time of day/mid_day.jpg",
|
| 150 |
+
"app/asset/images/time of day/sunset.jpg",
|
| 151 |
+
"app/asset/images/time of day/night.jpg"
|
| 152 |
]
|
| 153 |
|
| 154 |
day_caps = ["Sunrise", "Mid day", "Sunset", "Night"]
|
|
|
|
| 168 |
|
| 169 |
@st.dialog("Landscape")
|
| 170 |
def add_landscape():
|
| 171 |
+
landscape_photos = ["app/asset/images/landscape/urban.jpg", "app/asset/images/landscape/surburban.jpg",
|
| 172 |
+
"app/asset/images/landscape/coastal.jpg", "app/asset/images/landscape/grassland.jpg",
|
| 173 |
+
"app/asset/images/landscape/forest.jpg", "app/asset/images/landscape/tropical.jpg",
|
| 174 |
+
"app/asset/images/landscape/desert.jpg", "app/asset/images/landscape/mountain.jpg",
|
| 175 |
+
"app/asset/images/landscape/swamp.jpg", "app/asset/images/landscape/polar.jpg"]
|
| 176 |
|
| 177 |
landscape_caps = ["Urban", "Suburban", "Coastal", "Grassland", 'Forest',
|
| 178 |
'Tropical', "Desert", "Mountain", "Swamp", "Polar"]
|