pyorbbec 1.0.1.25__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- OrbbecSDK.dll +0 -0
- OrbbecSDK.lib +0 -0
- OrbbecSDKConfig-release.cmake +19 -0
- OrbbecSDKConfig.cmake +104 -0
- OrbbecSDKConfig.xml +2332 -0
- extensions/depthengine/depthengine.dll +0 -0
- extensions/depthengine/depthengine.lib +0 -0
- extensions/filters/FilterProcessor.dll +0 -0
- extensions/filters/ob_priv_filter.dll +0 -0
- extensions/firmwareupdater/firmwareupdater.dll +0 -0
- extensions/frameprocessor/ob_frame_processor.dll +0 -0
- pyorbbec/__init__.py +1 -0
- pyorbbec/__version__.py +10 -0
- pyorbbec/config/OrbbecSDKConfig.md +222 -0
- pyorbbec/config/OrbbecSDKConfig.xml +2332 -0
- pyorbbec/config/multi_device_sync_config.json +28 -0
- pyorbbec/examples/.gitkeep +0 -0
- pyorbbec/examples/README.md +26 -0
- pyorbbec/examples/callback.py +303 -0
- pyorbbec/examples/color.py +64 -0
- pyorbbec/examples/coordinate_transform.py +184 -0
- pyorbbec/examples/depth.py +107 -0
- pyorbbec/examples/depth_work_mode.py +59 -0
- pyorbbec/examples/device_firmware_update.py +155 -0
- pyorbbec/examples/device_optional_depth_presets_update.py +142 -0
- pyorbbec/examples/enumerate.py +118 -0
- pyorbbec/examples/hdr.py +216 -0
- pyorbbec/examples/hot_plug.py +160 -0
- pyorbbec/examples/hw_d2c_align.py +135 -0
- pyorbbec/examples/imu.py +60 -0
- pyorbbec/examples/infrared.py +148 -0
- pyorbbec/examples/logger.py +55 -0
- pyorbbec/examples/metadata.py +64 -0
- pyorbbec/examples/multi_device.py +169 -0
- pyorbbec/examples/multi_streams.py +219 -0
- pyorbbec/examples/net_device.py +177 -0
- pyorbbec/examples/playback.py +277 -0
- pyorbbec/examples/point_cloud.py +90 -0
- pyorbbec/examples/post_processing.py +119 -0
- pyorbbec/examples/preset.py +67 -0
- pyorbbec/examples/quick_start.py +90 -0
- pyorbbec/examples/recorder.py +238 -0
- pyorbbec/examples/requirements.txt +9 -0
- pyorbbec/examples/save_image_to_disk.py +106 -0
- pyorbbec/examples/sync_align.py +109 -0
- pyorbbec/examples/two_devices_sync.py +233 -0
- pyorbbec/examples/utils.py +127 -0
- pyorbbec-1.0.1.25.dist-info/METADATA +12 -0
- pyorbbec-1.0.1.25.dist-info/RECORD +138 -0
- pyorbbec-1.0.1.25.dist-info/WHEEL +5 -0
- pyorbbec-1.0.1.25.dist-info/licenses/LICENSE +202 -0
- pyorbbec-1.0.1.25.dist-info/licenses/NOTICE +1 -0
- pyorbbec-1.0.1.25.dist-info/top_level.txt +1 -0
- pyorbbecsdk/OrbbecSDK.dll +0 -0
- pyorbbecsdk/OrbbecSDK.lib +0 -0
- pyorbbecsdk/OrbbecSDKConfig-release.cmake +19 -0
- pyorbbecsdk/OrbbecSDKConfig.cmake +104 -0
- pyorbbecsdk/OrbbecSDKConfig.xml +2332 -0
- pyorbbecsdk/__init__.py +1 -0
- pyorbbecsdk/__version__.py +10 -0
- pyorbbecsdk/config/OrbbecSDKConfig.md +222 -0
- pyorbbecsdk/config/OrbbecSDKConfig.xml +2332 -0
- pyorbbecsdk/config/multi_device_sync_config.json +28 -0
- pyorbbecsdk/examples/.gitkeep +0 -0
- pyorbbecsdk/examples/README.md +26 -0
- pyorbbecsdk/examples/callback.py +303 -0
- pyorbbecsdk/examples/color.py +64 -0
- pyorbbecsdk/examples/coordinate_transform.py +184 -0
- pyorbbecsdk/examples/depth.py +107 -0
- pyorbbecsdk/examples/depth_work_mode.py +59 -0
- pyorbbecsdk/examples/device_firmware_update.py +155 -0
- pyorbbecsdk/examples/device_optional_depth_presets_update.py +142 -0
- pyorbbecsdk/examples/enumerate.py +118 -0
- pyorbbecsdk/examples/hdr.py +216 -0
- pyorbbecsdk/examples/hot_plug.py +160 -0
- pyorbbecsdk/examples/hw_d2c_align.py +135 -0
- pyorbbecsdk/examples/imu.py +60 -0
- pyorbbecsdk/examples/infrared.py +148 -0
- pyorbbecsdk/examples/logger.py +55 -0
- pyorbbecsdk/examples/metadata.py +64 -0
- pyorbbecsdk/examples/multi_device.py +169 -0
- pyorbbecsdk/examples/multi_streams.py +219 -0
- pyorbbecsdk/examples/net_device.py +177 -0
- pyorbbecsdk/examples/playback.py +277 -0
- pyorbbecsdk/examples/point_cloud.py +90 -0
- pyorbbecsdk/examples/post_processing.py +119 -0
- pyorbbecsdk/examples/preset.py +67 -0
- pyorbbecsdk/examples/quick_start.py +90 -0
- pyorbbecsdk/examples/recorder.py +238 -0
- pyorbbecsdk/examples/requirements.txt +9 -0
- pyorbbecsdk/examples/save_image_to_disk.py +106 -0
- pyorbbecsdk/examples/sync_align.py +109 -0
- pyorbbecsdk/examples/two_devices_sync.py +233 -0
- pyorbbecsdk/examples/utils.py +127 -0
- pyorbbecsdk/extensions/depthengine/depthengine.dll +0 -0
- pyorbbecsdk/extensions/depthengine/depthengine.lib +0 -0
- pyorbbecsdk/extensions/filters/FilterProcessor.dll +0 -0
- pyorbbecsdk/extensions/filters/ob_priv_filter.dll +0 -0
- pyorbbecsdk/extensions/firmwareupdater/firmwareupdater.dll +0 -0
- pyorbbecsdk/extensions/frameprocessor/ob_frame_processor.dll +0 -0
- pyorbbecsdk/pyorbbecsdk/__init__.py +1 -0
- pyorbbecsdk/pyorbbecsdk/__version__.py +10 -0
- pyorbbecsdk/pyorbbecsdk/config/OrbbecSDKConfig.md +222 -0
- pyorbbecsdk/pyorbbecsdk/config/OrbbecSDKConfig.xml +2332 -0
- pyorbbecsdk/pyorbbecsdk/config/multi_device_sync_config.json +28 -0
- pyorbbecsdk/pyorbbecsdk/examples/.gitkeep +0 -0
- pyorbbecsdk/pyorbbecsdk/examples/README.md +26 -0
- pyorbbecsdk/pyorbbecsdk/examples/callback.py +303 -0
- pyorbbecsdk/pyorbbecsdk/examples/color.py +64 -0
- pyorbbecsdk/pyorbbecsdk/examples/coordinate_transform.py +184 -0
- pyorbbecsdk/pyorbbecsdk/examples/depth.py +107 -0
- pyorbbecsdk/pyorbbecsdk/examples/depth_work_mode.py +59 -0
- pyorbbecsdk/pyorbbecsdk/examples/device_firmware_update.py +155 -0
- pyorbbecsdk/pyorbbecsdk/examples/device_optional_depth_presets_update.py +142 -0
- pyorbbecsdk/pyorbbecsdk/examples/enumerate.py +118 -0
- pyorbbecsdk/pyorbbecsdk/examples/hdr.py +216 -0
- pyorbbecsdk/pyorbbecsdk/examples/hot_plug.py +160 -0
- pyorbbecsdk/pyorbbecsdk/examples/hw_d2c_align.py +135 -0
- pyorbbecsdk/pyorbbecsdk/examples/imu.py +60 -0
- pyorbbecsdk/pyorbbecsdk/examples/infrared.py +148 -0
- pyorbbecsdk/pyorbbecsdk/examples/logger.py +55 -0
- pyorbbecsdk/pyorbbecsdk/examples/metadata.py +64 -0
- pyorbbecsdk/pyorbbecsdk/examples/multi_device.py +169 -0
- pyorbbecsdk/pyorbbecsdk/examples/multi_streams.py +219 -0
- pyorbbecsdk/pyorbbecsdk/examples/net_device.py +177 -0
- pyorbbecsdk/pyorbbecsdk/examples/playback.py +277 -0
- pyorbbecsdk/pyorbbecsdk/examples/point_cloud.py +90 -0
- pyorbbecsdk/pyorbbecsdk/examples/post_processing.py +119 -0
- pyorbbecsdk/pyorbbecsdk/examples/preset.py +67 -0
- pyorbbecsdk/pyorbbecsdk/examples/quick_start.py +90 -0
- pyorbbecsdk/pyorbbecsdk/examples/recorder.py +238 -0
- pyorbbecsdk/pyorbbecsdk/examples/requirements.txt +9 -0
- pyorbbecsdk/pyorbbecsdk/examples/save_image_to_disk.py +106 -0
- pyorbbecsdk/pyorbbecsdk/examples/sync_align.py +109 -0
- pyorbbecsdk/pyorbbecsdk/examples/two_devices_sync.py +233 -0
- pyorbbecsdk/pyorbbecsdk/examples/utils.py +127 -0
- pyorbbecsdk/pyorbbecsdk.cp310-win_amd64.pyd +0 -0
- pyorbbecsdk.cp310-win_amd64.pyd +0 -0
OrbbecSDK.dll
ADDED
Binary file
|
OrbbecSDK.lib
ADDED
Binary file
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#----------------------------------------------------------------
|
2
|
+
# Generated CMake target import file for configuration "Release".
|
3
|
+
#----------------------------------------------------------------
|
4
|
+
|
5
|
+
# Commands may need to know the format version.
|
6
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
7
|
+
|
8
|
+
# Import target "ob::OrbbecSDK" for configuration "Release"
|
9
|
+
set_property(TARGET ob::OrbbecSDK APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
10
|
+
set_target_properties(ob::OrbbecSDK PROPERTIES
|
11
|
+
IMPORTED_IMPLIB_RELEASE "${_IMPORT_PREFIX}/lib/OrbbecSDK.lib"
|
12
|
+
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/OrbbecSDK.dll"
|
13
|
+
)
|
14
|
+
|
15
|
+
list(APPEND _cmake_import_check_targets ob::OrbbecSDK )
|
16
|
+
list(APPEND _cmake_import_check_files_for_ob::OrbbecSDK "${_IMPORT_PREFIX}/lib/OrbbecSDK.lib" "${_IMPORT_PREFIX}/bin/OrbbecSDK.dll" )
|
17
|
+
|
18
|
+
# Commands beyond this point should not need to know the version.
|
19
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
OrbbecSDKConfig.cmake
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
# Generated by CMake
|
2
|
+
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.0 required")
|
5
|
+
endif()
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
8
|
+
endif()
|
9
|
+
cmake_policy(PUSH)
|
10
|
+
cmake_policy(VERSION 2.8.3...3.28)
|
11
|
+
#----------------------------------------------------------------
|
12
|
+
# Generated CMake target import file.
|
13
|
+
#----------------------------------------------------------------
|
14
|
+
|
15
|
+
# Commands may need to know the format version.
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
17
|
+
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
19
|
+
set(_cmake_targets_defined "")
|
20
|
+
set(_cmake_targets_not_defined "")
|
21
|
+
set(_cmake_expected_targets "")
|
22
|
+
foreach(_cmake_expected_target IN ITEMS ob::OrbbecSDK)
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
26
|
+
else()
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
28
|
+
endif()
|
29
|
+
endforeach()
|
30
|
+
unset(_cmake_expected_target)
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
32
|
+
unset(_cmake_targets_defined)
|
33
|
+
unset(_cmake_targets_not_defined)
|
34
|
+
unset(_cmake_expected_targets)
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
36
|
+
cmake_policy(POP)
|
37
|
+
return()
|
38
|
+
endif()
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
43
|
+
endif()
|
44
|
+
unset(_cmake_targets_defined)
|
45
|
+
unset(_cmake_targets_not_defined)
|
46
|
+
unset(_cmake_expected_targets)
|
47
|
+
|
48
|
+
|
49
|
+
# Compute the installation prefix relative to this file.
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
52
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
53
|
+
set(_IMPORT_PREFIX "")
|
54
|
+
endif()
|
55
|
+
|
56
|
+
# Create imported target ob::OrbbecSDK
|
57
|
+
add_library(ob::OrbbecSDK SHARED IMPORTED)
|
58
|
+
|
59
|
+
set_target_properties(ob::OrbbecSDK PROPERTIES
|
60
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
61
|
+
)
|
62
|
+
|
63
|
+
# Load information for each installed configuration.
|
64
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/OrbbecSDKConfig-*.cmake")
|
65
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
66
|
+
include("${_cmake_config_file}")
|
67
|
+
endforeach()
|
68
|
+
unset(_cmake_config_file)
|
69
|
+
unset(_cmake_config_files)
|
70
|
+
|
71
|
+
# Cleanup temporary variables.
|
72
|
+
set(_IMPORT_PREFIX)
|
73
|
+
|
74
|
+
# Loop over all imported files and verify that they actually exist
|
75
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
76
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
77
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
78
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
79
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
80
|
+
if(NOT EXISTS "${_cmake_file}")
|
81
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
82
|
+
\"${_cmake_file}\"
|
83
|
+
but this file does not exist. Possible reasons include:
|
84
|
+
* The file was deleted, renamed, or moved to another location.
|
85
|
+
* An install or uninstall procedure did not complete successfully.
|
86
|
+
* The installation package was faulty and contained
|
87
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
88
|
+
but not all the files it references.
|
89
|
+
")
|
90
|
+
endif()
|
91
|
+
endforeach()
|
92
|
+
endif()
|
93
|
+
unset(_cmake_file)
|
94
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
95
|
+
endforeach()
|
96
|
+
unset(_cmake_target)
|
97
|
+
unset(_cmake_import_check_targets)
|
98
|
+
|
99
|
+
# This file does not depend on other imported targets which have
|
100
|
+
# been exported from the same project but in a separate export set.
|
101
|
+
|
102
|
+
# Commands beyond this point should not need to know the version.
|
103
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
104
|
+
cmake_policy(POP)
|