Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
ButtonPusher
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Button Pusher
ButtonPusher
Commits
f6672a4d
Commit
f6672a4d
authored
Feb 10, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactoring class "DistItvExtractor"
parent
79d8170b
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
240 additions
and
77 deletions
+240
-77
DistItvExtractor.cs
Assets/MotionAnalysis/DistItvExtractor.cs
+236
-73
MotionDiscriminator.cs
Assets/MotionAnalysis/MotionDiscriminator.cs
+4
-4
No files found.
Assets/MotionAnalysis/DistItvExtractor.cs
View file @
f6672a4d
This diff is collapsed.
Click to expand it.
Assets/MotionAnalysis/MotionDiscriminator.cs
View file @
f6672a4d
...
...
@@ -72,15 +72,15 @@ namespace MotionAnalysis
private
void
Clap
()
{
const
float
dist
Prepare
=
0.3f
,
dist
Done
=
0.1f
;
const
float
itv
Prepare
=
0.3f
,
itv
Done
=
0.1f
;
if
(
Extractor
.
DistHandBaseSpineShoulder
<=
0.0f
)
return
;
if
(
Extractor
.
DistHand
>
dist
Prepare
)
if
(
Extractor
.
ItvHand
>
itv
Prepare
)
Motion
|=
MotionState
.
CLAP_PREPARE
;
else
if
(
Extractor
.
DistHand
<
dist
Done
)
else
if
(
Extractor
.
ItvHand
<
itv
Done
)
Motion
|=
MotionState
.
CLAP_DONE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment