├── README.md ├── example-bvh-parser ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── 1.bvh │ │ └── 2.bvh ├── config.make └── src │ ├── main.cpp │ └── ofxFakeShadowMap.h ├── example ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── FinalBaseMesh.obj │ │ ├── attachment.out │ │ ├── cheb.obj │ │ ├── crossWalk.txt │ │ ├── jumpAround.txt │ │ ├── runAround.txt │ │ ├── skeleton.out │ │ ├── test.obj │ │ ├── wakeUpSequence2.txt │ │ ├── walk.txt │ │ └── walkAndSkip.txt ├── config.make └── src │ ├── main.cpp │ └── ofxFakeShadowMap.h ├── libs └── bvh │ ├── bvh.cpp │ ├── bvh.h │ └── util.h ├── ofxaddons_thumbnail.png └── src ├── DisplayMesh.h ├── Makefile ├── Pinocchio.cpp ├── Pinocchio.h ├── attachment.cpp ├── attachment.h ├── bvh-parser.h ├── debugging.h ├── defmesh.cpp ├── defmesh.h ├── deriv.h ├── discretization.cpp ├── dtree.h ├── embedding.cpp ├── filter.cpp ├── filter.h ├── graphutils.cpp ├── graphutils.h ├── hashutils.h ├── indexer.cpp ├── indexer.h ├── intersector.cpp ├── intersector.h ├── lsqSolver.cpp ├── lsqSolver.h ├── mathutils.h ├── matrix.cpp ├── matrix.h ├── mesh.cpp ├── mesh.h ├── motion.cpp ├── motion.h ├── multilinear.h ├── ofxAutoRiggingModel.cpp ├── ofxAutoRiggingModel.h ├── pinocchioApi.cpp ├── pinocchioApi.h ├── pointprojector.h ├── quaddisttree.h ├── rect.h ├── refinement.cpp ├── skeleton.cpp ├── skeleton.h ├── transform.h ├── utils.h ├── vector.h └── vecutils.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/README.md -------------------------------------------------------------------------------- /example-bvh-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/Makefile -------------------------------------------------------------------------------- /example-bvh-parser/addons.make: -------------------------------------------------------------------------------- 1 | ofxAutoRiggingModel 2 | -------------------------------------------------------------------------------- /example-bvh-parser/bin/data/1.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/bin/data/1.bvh -------------------------------------------------------------------------------- /example-bvh-parser/bin/data/2.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/bin/data/2.bvh -------------------------------------------------------------------------------- /example-bvh-parser/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/config.make -------------------------------------------------------------------------------- /example-bvh-parser/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/src/main.cpp -------------------------------------------------------------------------------- /example-bvh-parser/src/ofxFakeShadowMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example-bvh-parser/src/ofxFakeShadowMap.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxAutoRiggingModel 2 | -------------------------------------------------------------------------------- /example/bin/data/FinalBaseMesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/FinalBaseMesh.obj -------------------------------------------------------------------------------- /example/bin/data/attachment.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/attachment.out -------------------------------------------------------------------------------- /example/bin/data/cheb.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/cheb.obj -------------------------------------------------------------------------------- /example/bin/data/crossWalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/crossWalk.txt -------------------------------------------------------------------------------- /example/bin/data/jumpAround.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/jumpAround.txt -------------------------------------------------------------------------------- /example/bin/data/runAround.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/runAround.txt -------------------------------------------------------------------------------- /example/bin/data/skeleton.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/skeleton.out -------------------------------------------------------------------------------- /example/bin/data/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/test.obj -------------------------------------------------------------------------------- /example/bin/data/wakeUpSequence2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/wakeUpSequence2.txt -------------------------------------------------------------------------------- /example/bin/data/walk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/walk.txt -------------------------------------------------------------------------------- /example/bin/data/walkAndSkip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/bin/data/walkAndSkip.txt -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/config.make -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofxFakeShadowMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/example/src/ofxFakeShadowMap.h -------------------------------------------------------------------------------- /libs/bvh/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/libs/bvh/bvh.cpp -------------------------------------------------------------------------------- /libs/bvh/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/libs/bvh/bvh.h -------------------------------------------------------------------------------- /libs/bvh/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/libs/bvh/util.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/DisplayMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/DisplayMesh.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Pinocchio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/Pinocchio.cpp -------------------------------------------------------------------------------- /src/Pinocchio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/Pinocchio.h -------------------------------------------------------------------------------- /src/attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/attachment.cpp -------------------------------------------------------------------------------- /src/attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/attachment.h -------------------------------------------------------------------------------- /src/bvh-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/bvh-parser.h -------------------------------------------------------------------------------- /src/debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/debugging.h -------------------------------------------------------------------------------- /src/defmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/defmesh.cpp -------------------------------------------------------------------------------- /src/defmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/defmesh.h -------------------------------------------------------------------------------- /src/deriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/deriv.h -------------------------------------------------------------------------------- /src/discretization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/discretization.cpp -------------------------------------------------------------------------------- /src/dtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/dtree.h -------------------------------------------------------------------------------- /src/embedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/embedding.cpp -------------------------------------------------------------------------------- /src/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/filter.cpp -------------------------------------------------------------------------------- /src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/filter.h -------------------------------------------------------------------------------- /src/graphutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/graphutils.cpp -------------------------------------------------------------------------------- /src/graphutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/graphutils.h -------------------------------------------------------------------------------- /src/hashutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/hashutils.h -------------------------------------------------------------------------------- /src/indexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/indexer.cpp -------------------------------------------------------------------------------- /src/indexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/indexer.h -------------------------------------------------------------------------------- /src/intersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/intersector.cpp -------------------------------------------------------------------------------- /src/intersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/intersector.h -------------------------------------------------------------------------------- /src/lsqSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/lsqSolver.cpp -------------------------------------------------------------------------------- /src/lsqSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/lsqSolver.h -------------------------------------------------------------------------------- /src/mathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/mathutils.h -------------------------------------------------------------------------------- /src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/matrix.cpp -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/mesh.cpp -------------------------------------------------------------------------------- /src/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/mesh.h -------------------------------------------------------------------------------- /src/motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/motion.cpp -------------------------------------------------------------------------------- /src/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/motion.h -------------------------------------------------------------------------------- /src/multilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/multilinear.h -------------------------------------------------------------------------------- /src/ofxAutoRiggingModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/ofxAutoRiggingModel.cpp -------------------------------------------------------------------------------- /src/ofxAutoRiggingModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/ofxAutoRiggingModel.h -------------------------------------------------------------------------------- /src/pinocchioApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/pinocchioApi.cpp -------------------------------------------------------------------------------- /src/pinocchioApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/pinocchioApi.h -------------------------------------------------------------------------------- /src/pointprojector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/pointprojector.h -------------------------------------------------------------------------------- /src/quaddisttree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/quaddisttree.h -------------------------------------------------------------------------------- /src/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/rect.h -------------------------------------------------------------------------------- /src/refinement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/refinement.cpp -------------------------------------------------------------------------------- /src/skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/skeleton.cpp -------------------------------------------------------------------------------- /src/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/skeleton.h -------------------------------------------------------------------------------- /src/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/transform.h -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/vector.h -------------------------------------------------------------------------------- /src/vecutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxAutoRiggingModel/HEAD/src/vecutils.h --------------------------------------------------------------------------------