Ergonomics metrics
Project description
Ergonomics
Ergonomics metrics: REBA score
Installation
pip install ergonomics-metrics
Example
from ergonomics.reba import RebaScore
import requests
import numpy as np
import json
url = 'https://www.dropbox.com/s/e72lwn9n9gkoygj/ergonomics.json?dl=1'
r = requests.get(url)
sample_pose = np.array(r.json()['sample_pose'])
rebaScore = RebaScore()
body_params = rebaScore.get_body_angles_from_pose_right(sample_pose)
arms_params = rebaScore.get_arms_angles_from_pose_right(sample_pose)
rebaScore.set_body(body_params)
score_a, partial_a = rebaScore.compute_score_a()
rebaScore.set_arms(arms_params)
score_b, partial_b = rebaScore.compute_score_b()
score_c, caption = rebaScore.compute_score_c(score_a, score_b)
print("Score A: ", score_a, "Partial: ", partial_a)
print("Score A: ", score_b, "Partial: ", partial_b)
print("Score C: ", score_c, caption)
Test
Pose Left
Neck Score: 2
Trunk Score: 2
Legs Score: 2
Upper Arm Score: 1
Lower Arm Score: 2
Wrist Score: 3
A Score: 4
B Score: 3
C score: 4
REBA score: 4
Pose Right
Neck Score: 2
Trunk Score: 2
Legs Score: 2
Upper Arm Score: 1
Lower Arm Score: 2
Wrist Score: 2
A Score: 4
B Score: 2
C score: 4
REBA score: 4
Rank
[0]'Negligible Risk',
[2-3]'Low Risk. Change may be needed',
[4-7]'Medium Risk. Further Investigate. Change Soon',
[8-10]'High Risk. Investigate and Implement Change',
[11+]'Very High Risk. Implement Change'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ergonomics_metrics-0.4.3.tar.gz.
File metadata
- Download URL: ergonomics_metrics-0.4.3.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52c5343c9a0048cd0ebd271c5a5c90f4998023b8578fd4e0552f866e55cb5ec7
|
|
| MD5 |
88110d8bf7a2c4f9c8dc53e53c0ee77f
|
|
| BLAKE2b-256 |
6edc599c690db137b3b1332a0842eed49d3c08d35fe131b4d7d677e20a157978
|