├── .gitattributes ├── .github └── workflows │ └── conan_build.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cmake └── build_strmbase.cmake ├── conanfile.txt └── src ├── common ├── com_utils.h ├── guid_filter.cpp ├── guid_filter.h ├── settings.cpp ├── settings.h └── settings_list.h ├── filter ├── CMakeLists.txt ├── device.h ├── device_factory.cpp ├── device_factory.h ├── device_kinect.cpp ├── device_kinect.h ├── device_kinect_v2.cpp ├── device_kinect_v2.h ├── device_null.cpp ├── device_null.h ├── dll.cpp ├── filter_video.cpp ├── filter_video.h ├── filters.def ├── image.cpp ├── image.h ├── kinect_v2_wrapper.cpp ├── kinect_v2_wrapper.h ├── kinect_wrapper.cpp └── kinect_wrapper.h └── ui ├── CMakeLists.txt ├── com_register.cpp ├── com_register.h ├── ds_capture.cpp ├── ds_capture.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── qt_utils.cpp └── qt_utils.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/conan_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/.github/workflows/conan_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/README.md -------------------------------------------------------------------------------- /cmake/build_strmbase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/cmake/build_strmbase.cmake -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/conanfile.txt -------------------------------------------------------------------------------- /src/common/com_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/com_utils.h -------------------------------------------------------------------------------- /src/common/guid_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/guid_filter.cpp -------------------------------------------------------------------------------- /src/common/guid_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/guid_filter.h -------------------------------------------------------------------------------- /src/common/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/settings.cpp -------------------------------------------------------------------------------- /src/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/settings.h -------------------------------------------------------------------------------- /src/common/settings_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/common/settings_list.h -------------------------------------------------------------------------------- /src/filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/CMakeLists.txt -------------------------------------------------------------------------------- /src/filter/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device.h -------------------------------------------------------------------------------- /src/filter/device_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_factory.cpp -------------------------------------------------------------------------------- /src/filter/device_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_factory.h -------------------------------------------------------------------------------- /src/filter/device_kinect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_kinect.cpp -------------------------------------------------------------------------------- /src/filter/device_kinect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_kinect.h -------------------------------------------------------------------------------- /src/filter/device_kinect_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_kinect_v2.cpp -------------------------------------------------------------------------------- /src/filter/device_kinect_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_kinect_v2.h -------------------------------------------------------------------------------- /src/filter/device_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_null.cpp -------------------------------------------------------------------------------- /src/filter/device_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/device_null.h -------------------------------------------------------------------------------- /src/filter/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/dll.cpp -------------------------------------------------------------------------------- /src/filter/filter_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/filter_video.cpp -------------------------------------------------------------------------------- /src/filter/filter_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/filter_video.h -------------------------------------------------------------------------------- /src/filter/filters.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/filters.def -------------------------------------------------------------------------------- /src/filter/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/image.cpp -------------------------------------------------------------------------------- /src/filter/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/image.h -------------------------------------------------------------------------------- /src/filter/kinect_v2_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/kinect_v2_wrapper.cpp -------------------------------------------------------------------------------- /src/filter/kinect_v2_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/kinect_v2_wrapper.h -------------------------------------------------------------------------------- /src/filter/kinect_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/kinect_wrapper.cpp -------------------------------------------------------------------------------- /src/filter/kinect_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/filter/kinect_wrapper.h -------------------------------------------------------------------------------- /src/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/com_register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/com_register.cpp -------------------------------------------------------------------------------- /src/ui/com_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/com_register.h -------------------------------------------------------------------------------- /src/ui/ds_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/ds_capture.cpp -------------------------------------------------------------------------------- /src/ui/ds_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/ds_capture.h -------------------------------------------------------------------------------- /src/ui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/main.cpp -------------------------------------------------------------------------------- /src/ui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/mainwindow.cpp -------------------------------------------------------------------------------- /src/ui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/mainwindow.h -------------------------------------------------------------------------------- /src/ui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/mainwindow.ui -------------------------------------------------------------------------------- /src/ui/qt_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/qt_utils.cpp -------------------------------------------------------------------------------- /src/ui/qt_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohanSmet/kinect_webcam/HEAD/src/ui/qt_utils.h --------------------------------------------------------------------------------