浏览器中使用pose-detection调用摄像头实时俯卧撑计数器代码

代码语言:html

所属分类:多媒体

代码描述:浏览器中使用pose-detection调用摄像头实时俯卧撑计数器代码,gemini3生成,采用TensorFlow.js与pose-detection框架离线运行。

代码标签: 浏览器 使用 pose-detection 调用 摄像头 实时 俯卧撑 计数器 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI 俯卧撑计数器</title>
    <style>
        body {
            margin: 0;
            background-color: #1a1a1a;
            color: white;
            font-family: sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        h1 { margin: 10px 0; font-size: 1.5rem; }

        .container {
            position: relative;
            width: 95%;
            max-width: 640px;
            margin-bottom: 20px;
        }

        /* 视频和Canvas重叠 */
        video {
            display: none; /* 隐藏原始视频,只显示Canvas */
        }

        canvas {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            background-color: #000;
        }

        /* 计数面板 */
        .score-board {
            display: flex;
            justify-content: space-around;
            width: 100%;
            max-width: 640px;
            background: #333;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .score-item {
            text-align: center;
        }

        .score-value {
            font-size: 3rem;
            font-weight: bold;
            color: #00e676;
        }

        .score-label {
            font-size: 0.9rem;
            color: #bbb;
        }

        .status-indicator {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            background-color: rgba(0,0,0,0.7);
            color: #fff;
        }

        #loading {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
         .........完整代码请登录后点击上方下载按钮下载查看

网友评论0