Toggle navigation
Toggle navigation
This project
Loading...
Sign in
한우준
/
Straight-Up
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
MrMirror21
2020-12-10 14:24:45 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
7dd5f67e067c61bd8a3d698d3c423a31e7a51f60
7dd5f67e
2 parents
9741171d
fb38ad52
solving file conflict
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
91 additions
and
11 deletions
README.md
straight-up/src/AnalysisPose.js
README.md
View file @
7dd5f67
# Straight Up
카카오 'Pose API'를 이용해 사용자가 자신의 모습(서있거나, 앉아있거나)을 업로드하면 자세를 분석해 교정 방법을 알려줍니다.
👨🏻💻 Straight Up
=============
카카오
**Pose API**
와
**웹페이지로 구현된 클라이언트**
를 이용해
### 사용 방법
1.
repository clone
원하는 디렉토리에서 Straight-Up을 클론합니다.
1.
사용자의
**앉은 자세를 분석**
해주고,
2. 터미널에서 `cd straight-up' 입력
2.
**자세 교정과 질환 방지를 위한 정보를 링크로 제공**
해주는 프로그램입니다
3. 패키지 파일 설치
실행을 위한 패키지 모듈을 설치합니다.
코로나-19로 인해 재택근무와 원격수업이 많아진 요즘,
Straight-Up을 이용해 자세를 교정받고 근골격계 질환으로부터 자유로워지세요!
------
<img
src=
"straight-up/src/style/Logo.JPG"
width=
"30%"
height=
"30%"
alt=
"straight-up logo"
></img>
🛠 기능
=============
*
**안면**
,
**귀**
,
**어깨**
가 보이는
**정면 사진**
을 분석해 자세를 분석합니다.
*
**골반**
,
**귀**
,
**어깨**
가 보이는
**측면 사진**
을 분석해 자세를 분석합니다.
**(좌, 우 구분)**
*
올바르지 않은 자세가 감지되면
**관련 질환**
과
**스트레칭**
등에 대한 정보를 얻을 수 있는
**링크로 연결**
됩니다.
🌏 환경
=============
*
[
Pose API
][
poseapilink
]
[
poseapilink
]:
https://developers.kakao.com/product/pose
*
[
Axios
][
axioslink
]
[
axioslink
]:
https://www.npmjs.com/package/axios
*
[
React
][
reactlink
]
[
reactlink
]:
https://ko.reactjs.org/
*
[
Windows10
][
windowslink
]
[
windowslink
]:
https://www.microsoft.com/ko-kr/software-download/windows10%5C
*
[
Java Script
][
jslink
]
[
jslink
]:
https://developer.mozilla.org/ko/docs/Web/JavaScript
*
[
Visual Studio Code
][
vsclink
]
[
vsclink
]:
https://code.visualstudio.com/
🧭 사용 방법
=============
**이 프로그램은 로컬에서 동작합니다.**
__
_
1.
Clone Repository
> 원하는 디렉토리에서 **Straight-Up**을 클론합니다.
```
git clone http://khuhub.khu.ac.kr/2019102240/Straight-Up.git
```
2.
Change Directory
> 터미널에서 **`cd straight-up`** 입력
```
cd straight-up
```
3.
Install Package Files
> 실행을 위한 패키지 모듈을 설치합니다.
```
npm install
yarn
```
4.
Start the Program
> **`npm start`** 입력 후 **localhost:3002**으로 접속합니다.
```
npm start
https://localhost:3002
```
📑 LICENSE
=============
MIT License
Copyright (c)
[
2020
]
[
Woojoon Han
]
Copyright (c)
[
2020
]
[
Wonjin Kim
]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4. 어플리케이션 실행
npm start 입력 후 localhost:3002으로 접속합니다.
📧 E-mail
=============
+
한우준 (2019102)
+
E-mail:
+
김원진 (2019102160)
+
E-mail: onejin25@naver.com
\ No newline at end of file
...
...
straight-up/src/AnalysisPose.js
View file @
7dd5f67
...
...
@@ -51,7 +51,6 @@ const checkStraight = (resData, position) => { //resData: API로 받은 JSON 객
var
d_left
=
distance
(
x_position
[
ear
],
y_position
[
ear
],
x_position
[
shoulder
],
y_position
[
shoulder
]);
var
d_right
=
distance
(
x_position
[
ear
+
1
],
y_position
[
ear
+
1
],
x_position
[
shoulder
+
1
],
y_position
[
shoulder
+
1
]);
var
gap
=
difference
(
d_left
,
d_right
);
if
(
gap
>=
15
)
{
//기운 각도가 15도를 넘을 경우
if
(
d_left
>
d_right
)
{
//오른쪽으로 기울인 경우
return
'leaning right by '
+
gap
+
'percent.'
;
...
...
Please
register
or
login
to post a comment