Spaces:
Sleeping
Sleeping
import gradio as gr | |
import cv2 | |
import numpy as np | |
# μμμ λ§μ€νΉ ν¨μ μ μ (μ€μ λͺ¨λΈμ μ¬κΈ°μ μ°κ²°) | |
def mask_image(image): | |
return image | |
with gr.Blocks(title="Privacy Mask", css="footer{display:none !important}") as demo: | |
# gr.Markdown( | |
# """ | |
# ## Invoice Info Auto-Masking Service | |
# # InvoHide | |
# ### Simply Protect your private informations in Invoice Image | |
# """) | |
with gr.Row(): | |
image_input = gr.Image() | |
#image_output = gr.Image() # download [ok] | |
image_output = gr.Image( | |
show_download_button=True | |
) | |
image_button = gr.Button("masking") | |
image_button.click( | |
mask_image, | |
inputs=image_input, | |
outputs=image_output | |
) | |
demo.launch() |