├── .gitignore ├── LICENSE ├── README.md ├── ball_tracking_example ├── ball_tracking_example.mp4 ├── sequential.py └── taskified.py ├── cloud_server_coordinator.py ├── iot_client_coordinator.py ├── requirements.txt └── task_interface_example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/README.md -------------------------------------------------------------------------------- /ball_tracking_example/ball_tracking_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/ball_tracking_example/ball_tracking_example.mp4 -------------------------------------------------------------------------------- /ball_tracking_example/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/ball_tracking_example/sequential.py -------------------------------------------------------------------------------- /ball_tracking_example/taskified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/ball_tracking_example/taskified.py -------------------------------------------------------------------------------- /cloud_server_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/cloud_server_coordinator.py -------------------------------------------------------------------------------- /iot_client_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/iot_client_coordinator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | imutils==0.5.2 2 | numpy==1.16.1 3 | opencv-python==4.0.0.21 4 | -------------------------------------------------------------------------------- /task_interface_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nareddyt/cs4365-task-offload-framework/HEAD/task_interface_example.py --------------------------------------------------------------------------------