faiimea commited on
Commit
ac1c7e9
·
verified ·
1 Parent(s): cfff69e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -65,7 +65,17 @@ def convert_image_to_bytes(image_path):
65
 
66
  # Gradio interface
67
  with gr.Blocks() as demo:
68
- gr.Markdown("# Pose Estimation")
 
 
 
 
 
 
 
 
 
 
69
  with gr.Row():
70
  image = gr.File(label="Upload Image", type="binary")
71
  output_image = gr.Image(label="Estimation Result")
 
65
 
66
  # Gradio interface
67
  with gr.Blocks() as demo:
68
+ gr.Markdown(
69
+ '''
70
+ This space displays how to perform Pose Estimation.
71
+ ## How to use this Space?
72
+ - Upload an image, preferably with a whole view of body.
73
+ - You will receive the result of the Pose Estimation after 5-10 seconds.
74
+ - Click the 'clear' button to clear all the files.
75
+ ## Examples
76
+ - You can get the test examples from our [Roop Dataset Repo.](https://huggingface.co/datasets/SJTU-TES/openpose)
77
+ '''
78
+ )
79
  with gr.Row():
80
  image = gr.File(label="Upload Image", type="binary")
81
  output_image = gr.Image(label="Estimation Result")