├── .DS_Store ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE.md ├── README.md ├── libraries └── visca │ ├── __init__.py │ ├── camera.py │ ├── move_visca_ptz.py │ └── visca_code_lines.py ├── logic ├── camera_search │ ├── get_serial_cameras.py │ └── search_ndi.py └── image_processing │ ├── dialogs │ ├── add_face.py │ ├── remove_face.py │ └── reset_database.py │ └── facial_recognition.py ├── requirements.txt ├── shared ├── .DS_Store ├── AutoPTZLogo.png ├── constants.py ├── message_prompts.py └── watch_trainer_directory.py ├── startup.py └── views ├── functions ├── assign_network_ptz_ui.py └── show_dialogs_ui.py ├── homepage ├── flow_layout.py └── main_window.py └── widgets └── camera_widget.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/README.md -------------------------------------------------------------------------------- /libraries/visca/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" -------------------------------------------------------------------------------- /libraries/visca/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/libraries/visca/camera.py -------------------------------------------------------------------------------- /libraries/visca/move_visca_ptz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/libraries/visca/move_visca_ptz.py -------------------------------------------------------------------------------- /libraries/visca/visca_code_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/libraries/visca/visca_code_lines.py -------------------------------------------------------------------------------- /logic/camera_search/get_serial_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/camera_search/get_serial_cameras.py -------------------------------------------------------------------------------- /logic/camera_search/search_ndi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/camera_search/search_ndi.py -------------------------------------------------------------------------------- /logic/image_processing/dialogs/add_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/image_processing/dialogs/add_face.py -------------------------------------------------------------------------------- /logic/image_processing/dialogs/remove_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/image_processing/dialogs/remove_face.py -------------------------------------------------------------------------------- /logic/image_processing/dialogs/reset_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/image_processing/dialogs/reset_database.py -------------------------------------------------------------------------------- /logic/image_processing/facial_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/logic/image_processing/facial_recognition.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/requirements.txt -------------------------------------------------------------------------------- /shared/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/shared/.DS_Store -------------------------------------------------------------------------------- /shared/AutoPTZLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/shared/AutoPTZLogo.png -------------------------------------------------------------------------------- /shared/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/shared/constants.py -------------------------------------------------------------------------------- /shared/message_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/shared/message_prompts.py -------------------------------------------------------------------------------- /shared/watch_trainer_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/shared/watch_trainer_directory.py -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/startup.py -------------------------------------------------------------------------------- /views/functions/assign_network_ptz_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/views/functions/assign_network_ptz_ui.py -------------------------------------------------------------------------------- /views/functions/show_dialogs_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/views/functions/show_dialogs_ui.py -------------------------------------------------------------------------------- /views/homepage/flow_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/views/homepage/flow_layout.py -------------------------------------------------------------------------------- /views/homepage/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/views/homepage/main_window.py -------------------------------------------------------------------------------- /views/widgets/camera_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutoPTZ/autoptz/HEAD/views/widgets/camera_widget.py --------------------------------------------------------------------------------