├── .gitignore ├── LICENSE ├── README.md ├── assets └── icons │ ├── icon_vtouch.svg │ └── icon_vtouch_inactive.svg ├── docs └── images │ ├── IDS_Header_22x9.png │ ├── Touchless_Interactive_Signage.png │ ├── vtouch_menu_start.png │ └── vtouch_trtpose_start_notification.png ├── pub ├── json │ ├── gesture.json │ ├── hand_pose.json │ ├── msg_pose.json │ └── obj_hand.json ├── model │ └── README.md └── trtpose_handpose │ ├── gesture_classifier.py │ ├── preprocessdata.py │ ├── pub_hand_msg.py │ ├── pub_hand_msg_profile.py │ ├── pub_hand_msg_thread.py │ └── util_time_profiling.py ├── test ├── msg_pose.json ├── obj_hand.json ├── test_pose_pub.py ├── test_pose_sub.py └── util_time_profiling.py ├── vtouch.py └── vtouch_indicator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/icon_vtouch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/assets/icons/icon_vtouch.svg -------------------------------------------------------------------------------- /assets/icons/icon_vtouch_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/assets/icons/icon_vtouch_inactive.svg -------------------------------------------------------------------------------- /docs/images/IDS_Header_22x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/docs/images/IDS_Header_22x9.png -------------------------------------------------------------------------------- /docs/images/Touchless_Interactive_Signage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/docs/images/Touchless_Interactive_Signage.png -------------------------------------------------------------------------------- /docs/images/vtouch_menu_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/docs/images/vtouch_menu_start.png -------------------------------------------------------------------------------- /docs/images/vtouch_trtpose_start_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/docs/images/vtouch_trtpose_start_notification.png -------------------------------------------------------------------------------- /pub/json/gesture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/json/gesture.json -------------------------------------------------------------------------------- /pub/json/hand_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/json/hand_pose.json -------------------------------------------------------------------------------- /pub/json/msg_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/json/msg_pose.json -------------------------------------------------------------------------------- /pub/json/obj_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/json/obj_hand.json -------------------------------------------------------------------------------- /pub/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/model/README.md -------------------------------------------------------------------------------- /pub/trtpose_handpose/gesture_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/gesture_classifier.py -------------------------------------------------------------------------------- /pub/trtpose_handpose/preprocessdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/preprocessdata.py -------------------------------------------------------------------------------- /pub/trtpose_handpose/pub_hand_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/pub_hand_msg.py -------------------------------------------------------------------------------- /pub/trtpose_handpose/pub_hand_msg_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/pub_hand_msg_profile.py -------------------------------------------------------------------------------- /pub/trtpose_handpose/pub_hand_msg_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/pub_hand_msg_thread.py -------------------------------------------------------------------------------- /pub/trtpose_handpose/util_time_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/pub/trtpose_handpose/util_time_profiling.py -------------------------------------------------------------------------------- /test/msg_pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/test/msg_pose.json -------------------------------------------------------------------------------- /test/obj_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/test/obj_hand.json -------------------------------------------------------------------------------- /test/test_pose_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/test/test_pose_pub.py -------------------------------------------------------------------------------- /test/test_pose_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/test/test_pose_sub.py -------------------------------------------------------------------------------- /test/util_time_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/test/util_time_profiling.py -------------------------------------------------------------------------------- /vtouch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/vtouch.py -------------------------------------------------------------------------------- /vtouch_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/jetson_virtual_touchpanel/HEAD/vtouch_indicator.py --------------------------------------------------------------------------------