File size: 1,520 Bytes
208d6bf
deb99f0
 
208d6bf
deb99f0
 
 
208d6bf
deb99f0
208d6bf
deb99f0
208d6bf
 
deb99f0
208d6bf
deb99f0
208d6bf
deb99f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
import gradio as gr
import numpy as np
from PIL import Image


def render(azimuth, elevation, theta, dist, category, unit):
    img_id = np.random.randint(0, 10000)

    os.system(f'python render.py --azimuth {azimuth} --elevation {elevation} --theta {theta} --dist {dist} --category {category} --unit {unit} --img_id {img_id}')

    img = Image.open(f'{img_id:05d}.png')
    os.system(f'rm {img_id:05d}.png')

    return np.array(img)

os.system('sh setup.sh')


with gr.Blocks() as demo:
    gr.Markdown('# Visualize object pose')
    gr.Markdown('This app runs on a free HuggingFace Space with no GPU support. Rendering an image generally takes a few seconds.')
    with gr.Row():
        with gr.Column(scale=1):
            azimuth_box = gr.Textbox(label="Azimuth", value="45")
            elevation_box = gr.Textbox(label="Elevation", value="15")
            theta_box = gr.Textbox(label="Theta", value="0")
            dist_box = gr.Textbox(label="Distance", value="4")
            category_radio = gr.Radio(["Aeroplane", "Bicycle", "Boat", "Bottle", "Bus", "Car", "Chair", "Diningtable", "Motorbike", "Sofa", "Train", "Tvmonitor"], value="Aeroplane")
            unit_radio = gr.Radio(["Degree", "Radian"], value="Degree")
            render_btn = gr.Button("Render")
        with gr.Column(scale=1):
            output = gr.Image(shape=(256, 256))
        render_btn.click(fn=render, inputs=[azimuth_box, elevation_box, theta_box, dist_box, category_radio, unit_radio], outputs=output)

demo.launch()