├── .gitignore ├── Hand.png ├── Hand.xmind ├── README.md └── benchmarks ├── freihand ├── FreiHAND.png ├── freihand_plots.py └── freihand_results.py ├── rhd ├── RHD.png ├── rhd_plot.py └── rhd_results.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | .idea 4 | -------------------------------------------------------------------------------- /Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/Hand.png -------------------------------------------------------------------------------- /Hand.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/Hand.xmind -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/freihand/FreiHAND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/freihand/FreiHAND.png -------------------------------------------------------------------------------- /benchmarks/freihand/freihand_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/freihand/freihand_plots.py -------------------------------------------------------------------------------- /benchmarks/freihand/freihand_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/freihand/freihand_results.py -------------------------------------------------------------------------------- /benchmarks/rhd/RHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/rhd/RHD.png -------------------------------------------------------------------------------- /benchmarks/rhd/rhd_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/rhd/rhd_plot.py -------------------------------------------------------------------------------- /benchmarks/rhd/rhd_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/rhd/rhd_results.py -------------------------------------------------------------------------------- /benchmarks/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeanChenxy/Hand3DResearch/HEAD/benchmarks/tools.py --------------------------------------------------------------------------------