├── .gitignore ├── Motion ├── RotMat2Euler.m ├── batchConvertBVH.m ├── batchConvertCMU.m ├── bvh2expmap.m ├── dropframes.m ├── euler2expmap.m ├── exp2xyz.m ├── expModify.m ├── expPlayData.m ├── expVisualise.m ├── expmap2rotmat.m ├── postprocess.m ├── postprocess1.m ├── postprocess2.m ├── preprocess1.m ├── preprocess2.m ├── preprocess2_test.m ├── quat2expmap.m ├── rotationMatrix.m ├── rotmat2expmap.m ├── rotmat2quat.m └── skelConnectionMatrix.m ├── README.md ├── crbmfe.m ├── demo_imcrbm_mit.m ├── demo_imcrbm_mit_labels.m ├── genmix.m ├── make_mit_walk_jog.m ├── make_mit_walk_jog_withtest.m ├── mixgaussiancrbm.m ├── mixgaussiancrbm_labels.m ├── visualize_mit.m └── visualize_mit_labels.m /.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /Motion/RotMat2Euler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/RotMat2Euler.m -------------------------------------------------------------------------------- /Motion/batchConvertBVH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/batchConvertBVH.m -------------------------------------------------------------------------------- /Motion/batchConvertCMU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/batchConvertCMU.m -------------------------------------------------------------------------------- /Motion/bvh2expmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/bvh2expmap.m -------------------------------------------------------------------------------- /Motion/dropframes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/dropframes.m -------------------------------------------------------------------------------- /Motion/euler2expmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/euler2expmap.m -------------------------------------------------------------------------------- /Motion/exp2xyz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/exp2xyz.m -------------------------------------------------------------------------------- /Motion/expModify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/expModify.m -------------------------------------------------------------------------------- /Motion/expPlayData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/expPlayData.m -------------------------------------------------------------------------------- /Motion/expVisualise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/expVisualise.m -------------------------------------------------------------------------------- /Motion/expmap2rotmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/expmap2rotmat.m -------------------------------------------------------------------------------- /Motion/postprocess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/postprocess.m -------------------------------------------------------------------------------- /Motion/postprocess1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/postprocess1.m -------------------------------------------------------------------------------- /Motion/postprocess2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/postprocess2.m -------------------------------------------------------------------------------- /Motion/preprocess1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/preprocess1.m -------------------------------------------------------------------------------- /Motion/preprocess2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/preprocess2.m -------------------------------------------------------------------------------- /Motion/preprocess2_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/preprocess2_test.m -------------------------------------------------------------------------------- /Motion/quat2expmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/quat2expmap.m -------------------------------------------------------------------------------- /Motion/rotationMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/rotationMatrix.m -------------------------------------------------------------------------------- /Motion/rotmat2expmap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/rotmat2expmap.m -------------------------------------------------------------------------------- /Motion/rotmat2quat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/rotmat2quat.m -------------------------------------------------------------------------------- /Motion/skelConnectionMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/Motion/skelConnectionMatrix.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/README.md -------------------------------------------------------------------------------- /crbmfe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/crbmfe.m -------------------------------------------------------------------------------- /demo_imcrbm_mit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/demo_imcrbm_mit.m -------------------------------------------------------------------------------- /demo_imcrbm_mit_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/demo_imcrbm_mit_labels.m -------------------------------------------------------------------------------- /genmix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/genmix.m -------------------------------------------------------------------------------- /make_mit_walk_jog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/make_mit_walk_jog.m -------------------------------------------------------------------------------- /make_mit_walk_jog_withtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/make_mit_walk_jog_withtest.m -------------------------------------------------------------------------------- /mixgaussiancrbm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/mixgaussiancrbm.m -------------------------------------------------------------------------------- /mixgaussiancrbm_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/mixgaussiancrbm_labels.m -------------------------------------------------------------------------------- /visualize_mit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/visualize_mit.m -------------------------------------------------------------------------------- /visualize_mit_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwtaylor/imCRBM/HEAD/visualize_mit_labels.m --------------------------------------------------------------------------------