MrMirror21

adjust number of function

This diff is collapsed. Click to expand it.
......@@ -33,17 +33,17 @@ const checkStraight = (resData, position) => { //resData: API로 받은 JSON 객
trust_value.push(resData[i + 2]);
}
if (position === 'front') { //정면 사진일 경우
//사용할 데이터의 신뢰도가 0.4 미만이면 실행하지 않음
if (trust_value[ear] < 0.4) {
//사용할 데이터의 신뢰도가 0.2 미만이면 실행하지 않음
if (trust_value[ear] < 0.2) {
return 'error_low_trust_value (keypoint:left_ear:4)'
}
if (trust_value[ear + 1] < 0.4) {
if (trust_value[ear + 1] < 0.2) {
return 'error_low_trust_value (keypoint:right_ear:5)'
}
if (trust_value[shoulder] < 0.4) {
if (trust_value[shoulder] < 0.2) {
return 'error_low_trust_value (keypoint:left_shoulder:6)'
}
if (trust_value[shoulder + 1] < 0.4) {
if (trust_value[shoulder + 1] < 0.2) {
return 'error_low_trust_value (keypoint:right_shoulder_7)'
}
......@@ -69,13 +69,13 @@ const checkStraight = (resData, position) => { //resData: API로 받은 JSON 객
shoulder++;
hip++;
}
if (trust_value[hip] < 0.4) { //사용할 데이터의 신뢰도가 0.4 미만이면 실행하지 않음
if (trust_value[hip] < 0.2) { //사용할 데이터의 신뢰도가 0.2 미만이면 실행하지 않음
return `error_low_trust_value (keypoint:${position}hip)`;
}
if (trust_value[shoulder] < 0.4) {
if (trust_value[shoulder] < 0.2) {
return `error_low_trust_value (keypoint:${position}shoulder)`;
}
if (trust_value[ear] < 0.4) {
if (trust_value[ear] < 0.2) {
return `error_low_trust_value (keypoint:${position}ear)`;
}
//엉덩이(12)-어깨(6) 각도가 70도 이하일 경우 > 굽은등
......