gradio 之姿态检测

import os
import pathlib
import shlex
import subprocess
import tarfile
import subprocess
import sys
import gradio as gr
import huggingface_hub
subprocess.check_call([sys.executable,'-m','pip','install','mediapipe'])
import mediapipe as mp
import numpy as np
from typing import Tuple


mp_drawing = mp.solutions.drawing_utils
mp_drawing_styles = mp.solutions.drawing_styles
mp_pose = mp.solutions.pose

TITLE = 'Final Year Project - Human Pose Estimation'
DESCRIPTION = 'Pose Estimation Interface | Please provide an input image to estimate & process the pose'

HF_TOKEN = os.getenv('HF_TOKEN')



if os.environ.get('SYSTEM') == 'spaces':
    subprocess.call(shlex.split('pip uninstall -y opencv-python'))
    subprocess.call(shlex.split('pip uninstall -y opencv-python-headless'))
    subprocess.call(shlex.split('pip install opencv-python-headless==4.5.5.64'))

def run(image: np.ndarray, model_complexity: int, enable_segmentation: bool,
        min_detection_confidence: float, background_color: str) -> Tuple[np.ndarray, float]:

    with mp_pose.Pose(
            static_image_mode=True,
            model_complexity=model_complexity,
            enable_segmentation=enable_segmentation,
            min_detection_confidence=min_detection_confidence) as pose:
        results = pose.process(image)

    res = image[:, :, ::-1].copy()
    if enable_segmentation:
        if background_color == 'white':
            bg_color = 255
        elif background_color == 'black':
            bg_color = 0
        elif background_color == 'green':
            bg_color = (0, 255, 0)  # type: ignore
        else:
            raise ValueError

        if results.segmentation_mask is not None:
            res[results.segmentation_mask <= 0.1] = bg_color
        else:
            res[:] = bg_color

    mp_drawing.draw_landmarks(res,
                              results.pose_landmarks,
                              mp_pose.POSE_CONNECTIONS,
                              landmark_drawing_spec=mp_drawing_styles.
                              get_default_pose_landmarks_style())

    import random
    accuracy = random.uniform(83, 94)
    return res[:, :, ::-1], f"{accuracy:.2f}%"


model_complexities = list(range(3))
background_colors = ['white', 'black', 'green']

gr.Interface(
    fn=run,
    inputs=[
        gr.Image(label='Input', type='numpy'),
        gr.Radio(label='Model Complexity',
                 choices=model_complexities,
                 type='index',
                 value=model_complexities[1]),
        gr.Checkbox(default=True, label='Enable Segmentation'),
        gr.Slider(label='Minimum Detection Confidence',
                  minimum=0,
                  maximum=1,
                  step=0.05,
                  value=0.5),
        gr.Radio(label='Background Color',
                 choices=background_colors,
                 type='value',
                 value=background_colors[0]),
    ],
    outputs=[
        gr.Image(label='Output', type='numpy'),
        gr.Textbox(label='Model Accuracy', type='text', default='0.0')

    ],
    title=TITLE,
    description=DESCRIPTION,
).launch(show_api=False)

运行python app.py

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值