File size: 944 Bytes
bcc480e
fe25407
 
9b44ae3
fe25407
 
 
 
4c99317
49debfe
 
 
 
 
 
 
610fa24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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.     """