├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── action_detection ├── __init__.py ├── action_detector.py ├── i3d.py └── weights │ └── .gitkeep ├── detect_actions.py ├── github_images ├── lab_actions_snap.png ├── object_cams_snap.png ├── person_states_snap.png └── qualitative_results_with_face.png ├── multiprocess_detect_actions.py ├── object_detection ├── SET_ENVIRONMENT.sh ├── __init__.py ├── object_detector.py └── weights │ ├── .gitkeep │ ├── changedtf_convert_tf_to_batched.sh │ └── convert_tf_to_batched.sh ├── output_videos └── .gitkeep ├── person_0_tube.mp4 ├── requirements.txt ├── sample_input.mp4 ├── simple_detect_actions_on_tube.py └── tests ├── .DS_Store ├── README.md ├── chase.png ├── chase1Person1View3Point0.mp4 ├── chase1Person1View3Point0_out.mp4 ├── chase_out.jpg ├── person_0.mp4 ├── person_0_roi.json ├── person_1.mp4 ├── person_1_roi.json ├── person_2.mp4 ├── person_2_roi.json ├── test_act_detector.py └── test_obj_detection.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/README.md -------------------------------------------------------------------------------- /action_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /action_detection/action_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/action_detection/action_detector.py -------------------------------------------------------------------------------- /action_detection/i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/action_detection/i3d.py -------------------------------------------------------------------------------- /action_detection/weights/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detect_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/detect_actions.py -------------------------------------------------------------------------------- /github_images/lab_actions_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/github_images/lab_actions_snap.png -------------------------------------------------------------------------------- /github_images/object_cams_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/github_images/object_cams_snap.png -------------------------------------------------------------------------------- /github_images/person_states_snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/github_images/person_states_snap.png -------------------------------------------------------------------------------- /github_images/qualitative_results_with_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/github_images/qualitative_results_with_face.png -------------------------------------------------------------------------------- /multiprocess_detect_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/multiprocess_detect_actions.py -------------------------------------------------------------------------------- /object_detection/SET_ENVIRONMENT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/object_detection/SET_ENVIRONMENT.sh -------------------------------------------------------------------------------- /object_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/object_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/object_detection/object_detector.py -------------------------------------------------------------------------------- /object_detection/weights/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/weights/changedtf_convert_tf_to_batched.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/object_detection/weights/changedtf_convert_tf_to_batched.sh -------------------------------------------------------------------------------- /object_detection/weights/convert_tf_to_batched.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/object_detection/weights/convert_tf_to_batched.sh -------------------------------------------------------------------------------- /output_videos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /person_0_tube.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/person_0_tube.mp4 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/sample_input.mp4 -------------------------------------------------------------------------------- /simple_detect_actions_on_tube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/simple_detect_actions_on_tube.py -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/chase.png -------------------------------------------------------------------------------- /tests/chase1Person1View3Point0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/chase1Person1View3Point0.mp4 -------------------------------------------------------------------------------- /tests/chase1Person1View3Point0_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/chase1Person1View3Point0_out.mp4 -------------------------------------------------------------------------------- /tests/chase_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/chase_out.jpg -------------------------------------------------------------------------------- /tests/person_0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_0.mp4 -------------------------------------------------------------------------------- /tests/person_0_roi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_0_roi.json -------------------------------------------------------------------------------- /tests/person_1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_1.mp4 -------------------------------------------------------------------------------- /tests/person_1_roi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_1_roi.json -------------------------------------------------------------------------------- /tests/person_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_2.mp4 -------------------------------------------------------------------------------- /tests/person_2_roi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/person_2_roi.json -------------------------------------------------------------------------------- /tests/test_act_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/test_act_detector.py -------------------------------------------------------------------------------- /tests/test_obj_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oulutan/ACAM_Demo/HEAD/tests/test_obj_detection.py --------------------------------------------------------------------------------