Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add human joint constraint example #1016

Merged
merged 39 commits into from
Mar 15, 2018
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
fa9dfc9
Add in-source build script to examples
jslee02 Feb 26, 2018
b9f7e71
Add in-source build script to tutorials
jslee02 Feb 26, 2018
be77d75
Add human meshes and skel files
Sep 29, 2017
69ed7db
update skel files
jyf588 Sep 29, 2017
3858617
upload neural net weight files
jyf588 Oct 2, 2017
b048fb3
add human arm & leg joint position constraints
jyf588 Oct 2, 2017
c47ac0f
add external headers tiny-dnn
jyf588 Oct 2, 2017
9941bf0
add an example on human joint limits
jyf588 Oct 3, 2017
9f938b3
revise typos
jyf588 Oct 3, 2017
b2f302e
add external library cereal: used by tiny-dnn
jyf588 Oct 3, 2017
952ce67
Revert "add external library cereal: used by tiny-dnn"
jyf588 Oct 3, 2017
d612a5a
Remove tiny-dnn from DART codebase
jslee02 Feb 26, 2018
ade6c8d
Fix compile errors of Human[~]JointLimitConstraint
jslee02 Feb 26, 2018
b9787f2
Add Threads as required dependency
jslee02 Feb 26, 2018
f1fe204
Fix negative box sizes in kima_human_edited.skel
jslee02 Feb 26, 2018
9e7e865
Move Human[~]JointLimitConstraint to example directory
jslee02 Feb 26, 2018
1378ab3
Revert C++14 requirement from DART
jslee02 Feb 26, 2018
3d5199f
Use utils instead of io
jslee02 Feb 26, 2018
f694cf3
Add in-source build CMake script for humanJointLimits
jslee02 Feb 26, 2018
94c37de
Add missing rigidCubes example in in-source build list
jslee02 Feb 26, 2018
ab5bc4c
Set minimum requirement DART version to 6.4 for examples/tutorials
jslee02 Feb 26, 2018
388f0cf
Move Threads dependencies to humanJointLimits example
jslee02 Feb 26, 2018
0e1339e
Code format per clang-format
jslee02 Feb 26, 2018
15984bd
Remove leading underscores from argument names
jslee02 Feb 26, 2018
9f2e264
Fix warnings from Codacy
jslee02 Feb 26, 2018
a079111
Fix setting CMake variable
jslee02 Feb 26, 2018
a69ce11
Fix adding rigidCubes example
jslee02 Feb 26, 2018
661f66b
Merge branch 'examples/multiple_cmakelists' into example/human-joint-…
jslee02 Feb 26, 2018
ad0e4d1
Merge branch 'release-6.4' into example/human-joint-constraints_6.4_js
jslee02 Feb 26, 2018
72f84c7
Remove pointer deceleration of examples classes
jslee02 Feb 28, 2018
c428538
Move NN files to data/humanJointLimits
jslee02 Feb 28, 2018
b9e5642
Enable serialization of TinyDNN to load NN files
jslee02 Feb 28, 2018
68ea963
Code format
jslee02 Feb 28, 2018
05718ba
Move examples classes from DART namespace to global
jslee02 Feb 28, 2018
7c743ce
Update copyright
jslee02 Feb 28, 2018
c2cae3c
Add simple note to humanJointLimits/README.md
jslee02 Feb 28, 2018
3f2c2cd
Update changelog
jslee02 Feb 28, 2018
552b878
Merge branch 'release-6.4' into example/human-joint-constraints_6.4_js
jslee02 Mar 8, 2018
2ef2eba
Update README.md
jslee02 Mar 15, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
* Added support of rendering texture images: [#973](https://github.com/dartsim/dart/pull/973)
* Added OSG shadows: [#978](https://github.com/dartsim/dart/pull/978)

* Examples

* Added humanJointLimits: [#1016](https://github.com/dartsim/dart/pull/1016)

* License

* Added Personal Robotics Lab and Open Source Robotics Foundation as contributors: [#929](https://github.com/dartsim/dart/pull/929)
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(CMAKE_CXX_FLAGS_DEBUG "-g -fno-omit-frame-pointer -fno-inline-functions -fno-optimize-sibling-calls")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELEASE} ${CMAKE_CXX_FLAGS_DEBUG}")
set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_DEBUG} -pg")
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.8")

else()

Expand Down
Binary file added data/humanJointLimits/neuralnets/net-larm
Binary file not shown.
Binary file added data/humanJointLimits/neuralnets/net-lleg
Binary file not shown.
Loading