@@ -13,14 +13,19 @@ const PoseDetector: React.FC = () => {
13
13
const [ isTextNeck , setIsTextNeck ] = useState < boolean | null > ( null )
14
14
const [ isModelLoaded , setIsModelLoaded ] = useState < boolean > ( false )
15
15
const [ mode , setMode ] = useState < string > ( "snapshot" )
16
-
16
+ const [ canInit , setCanInit ] = useState < boolean > ( false )
17
+ const [ isSnapSaved , setIsSnapSaved ] = useState < boolean > ( false ) ;
17
18
const modelRef = useRef < any > ( null )
18
19
const snapRef = useRef < pose [ ] | null > ( null )
19
20
const resultRef = useRef < pose [ ] | null > ( null )
20
21
const textNeckStartTime = useRef < number | null > ( null )
21
22
const timer = useRef < any > ( null )
22
23
const canvasRef = useRef < HTMLCanvasElement > ( null )
23
24
25
+ const dx = useRef < number > ( 0 )
26
+ const dy = useRef < number > ( 0 )
27
+ const scale = useRef < number > ( 1 )
28
+
24
29
const { requestNotificationPermission, showNotification } = usePushNotification ( )
25
30
26
31
const requestApi = ( delay : number ) : Promise < void > => new Promise ( ( resolve ) => setTimeout ( resolve , delay ) )
@@ -64,10 +69,23 @@ const PoseDetector: React.FC = () => {
64
69
await window . ml5 . setBackend ( "webgl" )
65
70
}
66
71
72
+ const canInitCallback = ( canInit : boolean ) => {
73
+ setCanInit ( canInit )
74
+ }
75
+
67
76
const detect = useCallback (
68
77
( results : pose [ ] ) : void => {
69
78
resultRef . current = results
70
- if ( canvasRef . current ) drawPose ( results , canvasRef . current )
79
+ if ( canvasRef . current ) {
80
+ drawPose (
81
+ results ,
82
+ canvasRef . current ,
83
+ dx . current ,
84
+ dy . current ,
85
+ scale . current ,
86
+ canInitCallback ,
87
+ ! ! snapRef . current )
88
+ }
71
89
if ( snapRef . current ) {
72
90
const _slope = detectSlope ( snapRef . current , results , mode === "snapshot" )
73
91
const _isTextNeck = detectTextNeck ( snapRef . current , results , mode === "snapshot" )
@@ -108,7 +126,10 @@ const PoseDetector: React.FC = () => {
108
126
)
109
127
110
128
const getInitSnap = ( ) : void => {
111
- if ( modelRef && modelRef . current ) snapRef . current = resultRef . current
129
+ if ( modelRef && modelRef . current ) {
130
+ snapRef . current = resultRef . current
131
+ setIsSnapSaved ( true )
132
+ }
112
133
}
113
134
114
135
useEffect ( ( ) => {
@@ -129,6 +150,8 @@ const PoseDetector: React.FC = () => {
129
150
setIsTextNeck ( null )
130
151
setSlope ( null )
131
152
snapRef . current = null
153
+ setIsSnapSaved ( false )
154
+ setCanInit ( false )
132
155
}
133
156
134
157
const onChangeMode = ( e : React . ChangeEvent < HTMLSelectElement > ) => {
@@ -138,6 +161,25 @@ const PoseDetector: React.FC = () => {
138
161
}
139
162
}
140
163
164
+ const onChangeTranslation = ( e : React . ChangeEvent < HTMLInputElement > ) => {
165
+ const id = e . target . id ;
166
+ if ( e . target . value ) {
167
+ const value = Number . parseInt ( e . target . value )
168
+ switch ( id ) {
169
+ case 'vertical' :
170
+ dy . current = value
171
+ return
172
+ case 'horizontal' :
173
+ dx . current = value
174
+ return
175
+ case 'scale' :
176
+ scale . current = value / 100 * 2
177
+ return
178
+ default :
179
+ }
180
+ }
181
+ }
182
+
141
183
const onCancelAutoPoseMonitoring = ( ) => {
142
184
initializePoseMonitoring ( )
143
185
}
@@ -164,6 +206,14 @@ const PoseDetector: React.FC = () => {
164
206
/>
165
207
{ isModelLoaded && (
166
208
< >
209
+ < div >
210
+ < div > 좌우 이동</ div >
211
+ < input id = "horizontal" type = "range" min = { - 100 } max = { 100 } onChange = { onChangeTranslation } > </ input >
212
+ < div > 상하 이동</ div >
213
+ < input id = "vertical" type = "range" min = { - 100 } max = { 100 } onChange = { onChangeTranslation } > </ input >
214
+ < div > 크기 변경</ div >
215
+ < input id = "scale" type = "range" min = { 0 } max = { 100 } onChange = { onChangeTranslation } > </ input >
216
+ </ div >
167
217
< div className = "font-bold text-red-500" > 본 화면은 좌우가 반대로 보이고 있으니 주의하세요!</ div >
168
218
< div >
169
219
< select className = "rounded border border-gray-400 bg-white p-2" onChange = { onChangeMode } >
@@ -177,9 +227,17 @@ const PoseDetector: React.FC = () => {
177
227
스냅샷 모드입니다. 올바른 자세를 하신 후에, 버튼을 눌러 촬영을 하면 해당 자세를 기준으로 부적절한
178
228
자세를 추적합니다!
179
229
</ div >
180
- < button className = "rounded bg-blue-500 px-4 py-2 font-bold text-white" onClick = { getInitSnap } >
181
- 올바른 자세를 촬영한 후 자세 측정 시작!
182
- </ button >
230
+ {
231
+ canInit ?
232
+ isSnapSaved ?
233
+ < button className = "rounded bg-blue-500 px-4 py-2 font-bold text-white" onClick = { initializePoseMonitoring } >
234
+ 스냅샷 다시 찍기
235
+ </ button > :
236
+ < button className = "rounded bg-blue-500 px-4 py-2 font-bold text-white" onClick = { getInitSnap } >
237
+ 올바른 자세를 촬영한 후 자세 측정 시작!
238
+ </ button > :
239
+ < div className = "font-bold text-red-500" > 스냅샷을 찍을 수 없습니다. 가이드 라인에 맞게 자세를 잡아주세요.</ div >
240
+ }
183
241
</ >
184
242
) }
185
243
{ mode === "skeleton" && (
0 commit comments