├── LICENSE ├── README.md ├── lib ├── .gitignore ├── pydvs.c ├── pydvs.py └── setup.py └── samples ├── .gitignore ├── error_demo.py ├── evimo-gen-exp.py ├── evimo-gen.py ├── extract_npz.py ├── npz_converter.py ├── npz_split.py ├── poster_6dof.npz └── poster_translation.npz /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/README.md -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /lib/pydvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/lib/pydvs.c -------------------------------------------------------------------------------- /lib/pydvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/lib/pydvs.py -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/lib/setup.py -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/.gitignore -------------------------------------------------------------------------------- /samples/error_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/error_demo.py -------------------------------------------------------------------------------- /samples/evimo-gen-exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/evimo-gen-exp.py -------------------------------------------------------------------------------- /samples/evimo-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/evimo-gen.py -------------------------------------------------------------------------------- /samples/extract_npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/extract_npz.py -------------------------------------------------------------------------------- /samples/npz_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/npz_converter.py -------------------------------------------------------------------------------- /samples/npz_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/npz_split.py -------------------------------------------------------------------------------- /samples/poster_6dof.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/poster_6dof.npz -------------------------------------------------------------------------------- /samples/poster_translation.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/better-flow/pydvs/HEAD/samples/poster_translation.npz --------------------------------------------------------------------------------