File size: 554 Bytes
595be82
 
 
 
2fb58d7
595be82
 
 
 
 
 
 
 
 
 
2fb58d7
 
 
 
595be82
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os

import gradio as gr

from detection import EyesDetection, FaceDetection, HeadDetection

_GLOBAL_CSS = """
.limit-height {
    max-height: 55vh;
}
"""

if __name__ == '__main__':
    with gr.Blocks(css=_GLOBAL_CSS) as demo:
        with gr.Tabs():
            with gr.Tab('Face Detection'):
                FaceDetection().make_ui()
            with gr.Tab('Head Detection'):
                HeadDetection().make_ui()
            with gr.Tab('Eyes Detection'):
                EyesDetection().make_ui()

    demo.queue(os.cpu_count()).launch()