├── .gitignore ├── .idea ├── .gitignore ├── TPAMI_Gait_Identification.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── EV-Gait-3DGraph ├── __init__.py ├── __pycache__ │ ├── ev_gait_3d_graph_dataset.cpython-38.pyc │ └── model_3d_graph.cpython-38.pyc ├── ev_gait_3d_graph_dataset.py ├── model_3d_graph.py ├── test_3d_graph.py └── train_3d_graph.py ├── EV-Gait-IMG ├── __init__.py ├── convert_event_to_channel_image_tool.py ├── gait_cnn_dataset.py ├── gait_cnn_tf.py ├── make_hdf5.py ├── model_cnn.py ├── test_gait_cnn.py └── train_gait_cnn.py ├── README.md ├── __pycache__ └── config.cpython-38.pyc ├── config.py ├── data └── .gitkeep ├── generate_graph ├── __init__.py └── mat2graph.py ├── matlab_downsample ├── main.m └── pcd_downsampler.m ├── run.sh └── trained_model └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | trained_model/ 2 | log/ 3 | data/ 4 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/TPAMI_Gait_Identification.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/.idea/TPAMI_Gait_Identification.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /EV-Gait-3DGraph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EV-Gait-3DGraph/__pycache__/ev_gait_3d_graph_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/__pycache__/ev_gait_3d_graph_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /EV-Gait-3DGraph/__pycache__/model_3d_graph.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/__pycache__/model_3d_graph.cpython-38.pyc -------------------------------------------------------------------------------- /EV-Gait-3DGraph/ev_gait_3d_graph_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/ev_gait_3d_graph_dataset.py -------------------------------------------------------------------------------- /EV-Gait-3DGraph/model_3d_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/model_3d_graph.py -------------------------------------------------------------------------------- /EV-Gait-3DGraph/test_3d_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/test_3d_graph.py -------------------------------------------------------------------------------- /EV-Gait-3DGraph/train_3d_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-3DGraph/train_3d_graph.py -------------------------------------------------------------------------------- /EV-Gait-IMG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EV-Gait-IMG/convert_event_to_channel_image_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/convert_event_to_channel_image_tool.py -------------------------------------------------------------------------------- /EV-Gait-IMG/gait_cnn_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/gait_cnn_dataset.py -------------------------------------------------------------------------------- /EV-Gait-IMG/gait_cnn_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/gait_cnn_tf.py -------------------------------------------------------------------------------- /EV-Gait-IMG/make_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/make_hdf5.py -------------------------------------------------------------------------------- /EV-Gait-IMG/model_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/model_cnn.py -------------------------------------------------------------------------------- /EV-Gait-IMG/test_gait_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/test_gait_cnn.py -------------------------------------------------------------------------------- /EV-Gait-IMG/train_gait_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/EV-Gait-IMG/train_gait_cnn.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/config.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generate_graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generate_graph/mat2graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/generate_graph/mat2graph.py -------------------------------------------------------------------------------- /matlab_downsample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/matlab_downsample/main.m -------------------------------------------------------------------------------- /matlab_downsample/pcd_downsampler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/matlab_downsample/pcd_downsampler.m -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangxiann/TPAMI_Gait_Identification/HEAD/run.sh -------------------------------------------------------------------------------- /trained_model/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------