SusiePHaltmann's picture
Update app.py
610fa24
raw
history blame
944 Bytes
import streamlit as st
import numpy as np
from PIL import Image
def main():
st.title("Haltmann Diffusion Algorithm")
slider = st.slider("Slider", 0, 255, 128) # default value=128, min=0, max=255
st.title("Haltmann Diffusion Algorithm [C] 20XX ")
import streamlit as st
st.write("Welcome! Please wait ?? years for the ai to be done.")
import streamlit as st
st.markdown("Welcome! Please wait ?? years for the ai to be done.")
import streamlit as st
from PIL import Image
import numpy as np
def inpaint(img, mask):
"""Inpaints the given image using the given mask.
Args:
img: The image to inpaint. Must be a 3-channel RGB image.
mask: The inpainting mask. Must be a binary 3-channel image
with 1s indicating the area to inpaint and 0s indicating
the area to leave unchanged.
Returns:
The inpainted image as a 3-channel RGB numpy array. """