Created
February 12, 2022 12:57
-
-
Save ashhadulislam/73431a7d7d0a797b4030dec113836d9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import streamlit as st | |
import numpy as np | |
from PIL import Image | |
# Custom imports | |
from multipage import MultiPage | |
from pages import disasterAnalysis | |
# Create an instance of the app | |
app = MultiPage() | |
# Title of the main page | |
display = Image.open('cover.jpg') | |
display = np.array(display) | |
st.image(display) | |
st.title("Satellite Image based Disaster Analysis") | |
st.text("Disaster Affected Or Not: To detect if an area has been hit by a disaster") | |
# Add all your application here | |
app.add_page("Disaster Affected Or Not", disasterAnalysis.app) | |
# The main app | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment