') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - MotuS-Web/.github: [2023 공개SW 개발자대회 본선 진출작] 행동 유사도 측정을 위한 솔루션, "MotuS" · GitHub
Skip to content

Latest commit

History

30 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

[2023 공개SW 개발자대회 출품작] 비대면 운동 학습 플랫폼, "MotuS"

🫴🏻 Project Introduction

누구나 사용이 가능한 비대면 재활 운동 오픈소스 플랫폼을 개발하였습니다.
관리자가 한 재활 운동에 대해 가이드 영상을 등록하면 사용자가 해당 영상을 보고 운동을 진행합니다.
AI가 가이드 영상과 클라이언트 영상의 유사도를 측정하여
올바른 자세로 높은 정확도를 얻을 수 있도록 수강을 독려합니다.

비대면 재활치료를 돕는 웹사이트, Re:Hab 입니다. 🌿

🫱🏻‍🫲🏻 H-Five Team ✨

BEBEFEFEAI
이동헌박주영오소현김경재박인성
@Dong Heon Lee@JuYoung Park@osohyun0224@PortalCube@InSung Bahk

💡 Re:Hab 주요 기능 소개

1️⃣ 재활 운동 강의 학습

  • 강의 수강 : 자신이 원하는 재활 운동 강의를 선택 후 수강하며 운동을 진행.
  • AI 유사도 판정 : 동작에 대해 올바른 자세로 운동을 진행했는지 가이드영상를 바탕으로 동작 유사도를 판정.
  • 높은 유사도 유도: 높은 유사도를 받을 때까지 사용자의 반복적인 수강을 도와 효과적인 재활 치료를 도움.

🤔 Case 1: 올바른 자세로 수강 시

image
  • 😀 높은 정확도로 판정됨
image

🤔 Case 2: 나쁜 자세로 수강 시

image
  • 😥 낮은 정확도로 판정됨
image



2️⃣ 재활 운동 강의 등록

  • 관리자(admin)은 사용자들이 수강할 재활 운동 프로그램을 직접 생성할 수 있음.
  • 가이드 영상과 프로그램 제목, 설명, 태그를 설정해 프로그램을 등록함.
image

📚 Re:Hab Tech Stacks

개발 기간⏳

2023. 07.19 ~ 2023. 09. 07

🫱🏻‍🫲🏻🧑🏻‍💻 Development Collaboration Tools

GithubSlackNotion

🧑🏻‍💻 FrontEnd Team

Dev Packages:

ReactReduxAxios

Development Support Tools

ESLintPrettierVercelVite

🧑🏻‍💻 BackEnd Team

Environment

InteliJPostmanGit ActionGitGradleRaspberry Pi 4B

Development

Spring-BootJavaNCP(Naver Cloud Platform)MariaDB

Dependencies

QueryDslSpring-Data-JPASpring SecurityJWT(Json Web Token)LombokValidationGson

🧑🏻‍💻 AI Team

Languages

Python

Frameworks

  • Server: FastAPI , unvicron, mysql
  • AI : Pytorch, Numpy
  • Pre-processing: Scikit-learn, Scikit-video

Environment

Macbook Pro M1GTX 2070 SuperVisual Studio CodePostman

🧾 System Architecture

image

🧾 Fuction Architecture

👤 Client Fuction Architecture

image

👤🔧 Admin Fuction Architecture

image

About

[2023 공개SW 개발자대회 본선 진출작] 행동 유사도 측정을 위한 솔루션, "MotuS"

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors