├── LICENSE ├── Paper_Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors.pdf ├── Posture_fall_detection_demo.mp4 ├── README.md ├── common.py ├── data ├── lyingdown_testing.csv ├── lyingdown_training.csv ├── sitting_testing.csv ├── sitting_training.csv ├── standing_testing.csv └── standing_training.csv ├── images ├── fallDetectionSystem.png ├── kinectSkeleton.png └── kinectSkeletonFeatures.png ├── main.py ├── postureDetection_LSTM.h5 └── skeletonTracking ├── Debug └── skeletonTracking.pdb ├── skeletonTracking.sln ├── skeletonTracking ├── Debug │ ├── main.obj │ ├── skeletonTracking.log │ ├── skeletonTracking.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── skeletonTracking.lastbuildstate │ ├── vc140.idb │ └── vc140.pdb ├── main.cpp ├── skeletonTracking.vcxproj ├── skeletonTracking.vcxproj.filters ├── skeletonTracking.vcxproj.user └── x64 │ ├── Debug │ ├── main.obj │ ├── server.obj │ ├── skeletonTracking.Build.CppClean.log │ ├── skeletonTracking.log │ ├── skeletonTracking.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── skeletonTracking.lastbuildstate │ ├── vc140.idb │ └── vc140.pdb │ └── Release │ ├── main.obj │ ├── skeletonTracking.log │ ├── skeletonTracking.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── skeletonTracking.lastbuildstate │ └── vc140.pdb └── x64 ├── Debug ├── skeletonTracking.exe ├── skeletonTracking.ilk └── skeletonTracking.pdb └── Release ├── skeletonTracking.iobj ├── skeletonTracking.ipdb └── skeletonTracking.pdb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/LICENSE -------------------------------------------------------------------------------- /Paper_Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/Paper_Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors.pdf -------------------------------------------------------------------------------- /Posture_fall_detection_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/Posture_fall_detection_demo.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/README.md -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/common.py -------------------------------------------------------------------------------- /data/lyingdown_testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/lyingdown_testing.csv -------------------------------------------------------------------------------- /data/lyingdown_training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/lyingdown_training.csv -------------------------------------------------------------------------------- /data/sitting_testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/sitting_testing.csv -------------------------------------------------------------------------------- /data/sitting_training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/sitting_training.csv -------------------------------------------------------------------------------- /data/standing_testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/standing_testing.csv -------------------------------------------------------------------------------- /data/standing_training.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/data/standing_training.csv -------------------------------------------------------------------------------- /images/fallDetectionSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/images/fallDetectionSystem.png -------------------------------------------------------------------------------- /images/kinectSkeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/images/kinectSkeleton.png -------------------------------------------------------------------------------- /images/kinectSkeletonFeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/images/kinectSkeletonFeatures.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/main.py -------------------------------------------------------------------------------- /postureDetection_LSTM.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/postureDetection_LSTM.h5 -------------------------------------------------------------------------------- /skeletonTracking/Debug/skeletonTracking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/Debug/skeletonTracking.pdb -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking.sln -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/main.obj -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.log -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-rc.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link-rc.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/skeletonTracking.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/skeletonTracking.tlog/skeletonTracking.lastbuildstate -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/vc140.idb -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/Debug/vc140.pdb -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/main.cpp -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/skeletonTracking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/skeletonTracking.vcxproj -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/skeletonTracking.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/skeletonTracking.vcxproj.filters -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/skeletonTracking.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/skeletonTracking.vcxproj.user -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/main.obj -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/server.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/server.obj -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.Build.CppClean.log -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.log -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/skeletonTracking.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/skeletonTracking.tlog/skeletonTracking.lastbuildstate -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/vc140.idb -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Debug/vc140.pdb -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/main.obj -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.log -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/skeletonTracking.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/skeletonTracking.tlog/skeletonTracking.lastbuildstate -------------------------------------------------------------------------------- /skeletonTracking/skeletonTracking/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/skeletonTracking/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /skeletonTracking/x64/Debug/skeletonTracking.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Debug/skeletonTracking.exe -------------------------------------------------------------------------------- /skeletonTracking/x64/Debug/skeletonTracking.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Debug/skeletonTracking.ilk -------------------------------------------------------------------------------- /skeletonTracking/x64/Debug/skeletonTracking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Debug/skeletonTracking.pdb -------------------------------------------------------------------------------- /skeletonTracking/x64/Release/skeletonTracking.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Release/skeletonTracking.iobj -------------------------------------------------------------------------------- /skeletonTracking/x64/Release/skeletonTracking.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Release/skeletonTracking.ipdb -------------------------------------------------------------------------------- /skeletonTracking/x64/Release/skeletonTracking.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Health-Devices-Research-Group/Posture-and-Fall-Detection-System-Using-3D-Motion-Sensors/HEAD/skeletonTracking/x64/Release/skeletonTracking.pdb --------------------------------------------------------------------------------