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.
Files changed (138) hide show
  1. OrbbecSDK.dll +0 -0
  2. OrbbecSDK.lib +0 -0
  3. OrbbecSDKConfig-release.cmake +19 -0
  4. OrbbecSDKConfig.cmake +104 -0
  5. OrbbecSDKConfig.xml +2332 -0
  6. extensions/depthengine/depthengine.dll +0 -0
  7. extensions/depthengine/depthengine.lib +0 -0
  8. extensions/filters/FilterProcessor.dll +0 -0
  9. extensions/filters/ob_priv_filter.dll +0 -0
  10. extensions/firmwareupdater/firmwareupdater.dll +0 -0
  11. extensions/frameprocessor/ob_frame_processor.dll +0 -0
  12. pyorbbec/__init__.py +1 -0
  13. pyorbbec/__version__.py +10 -0
  14. pyorbbec/config/OrbbecSDKConfig.md +222 -0
  15. pyorbbec/config/OrbbecSDKConfig.xml +2332 -0
  16. pyorbbec/config/multi_device_sync_config.json +28 -0
  17. pyorbbec/examples/.gitkeep +0 -0
  18. pyorbbec/examples/README.md +26 -0
  19. pyorbbec/examples/callback.py +303 -0
  20. pyorbbec/examples/color.py +64 -0
  21. pyorbbec/examples/coordinate_transform.py +184 -0
  22. pyorbbec/examples/depth.py +107 -0
  23. pyorbbec/examples/depth_work_mode.py +59 -0
  24. pyorbbec/examples/device_firmware_update.py +155 -0
  25. pyorbbec/examples/device_optional_depth_presets_update.py +142 -0
  26. pyorbbec/examples/enumerate.py +118 -0
  27. pyorbbec/examples/hdr.py +216 -0
  28. pyorbbec/examples/hot_plug.py +160 -0
  29. pyorbbec/examples/hw_d2c_align.py +135 -0
  30. pyorbbec/examples/imu.py +60 -0
  31. pyorbbec/examples/infrared.py +148 -0
  32. pyorbbec/examples/logger.py +55 -0
  33. pyorbbec/examples/metadata.py +64 -0
  34. pyorbbec/examples/multi_device.py +169 -0
  35. pyorbbec/examples/multi_streams.py +219 -0
  36. pyorbbec/examples/net_device.py +177 -0
  37. pyorbbec/examples/playback.py +277 -0
  38. pyorbbec/examples/point_cloud.py +90 -0
  39. pyorbbec/examples/post_processing.py +119 -0
  40. pyorbbec/examples/preset.py +67 -0
  41. pyorbbec/examples/quick_start.py +90 -0
  42. pyorbbec/examples/recorder.py +238 -0
  43. pyorbbec/examples/requirements.txt +9 -0
  44. pyorbbec/examples/save_image_to_disk.py +106 -0
  45. pyorbbec/examples/sync_align.py +109 -0
  46. pyorbbec/examples/two_devices_sync.py +233 -0
  47. pyorbbec/examples/utils.py +127 -0
  48. pyorbbec-1.0.1.25.dist-info/METADATA +12 -0
  49. pyorbbec-1.0.1.25.dist-info/RECORD +138 -0
  50. pyorbbec-1.0.1.25.dist-info/WHEEL +5 -0
  51. pyorbbec-1.0.1.25.dist-info/licenses/LICENSE +202 -0
  52. pyorbbec-1.0.1.25.dist-info/licenses/NOTICE +1 -0
  53. pyorbbec-1.0.1.25.dist-info/top_level.txt +1 -0
  54. pyorbbecsdk/OrbbecSDK.dll +0 -0
  55. pyorbbecsdk/OrbbecSDK.lib +0 -0
  56. pyorbbecsdk/OrbbecSDKConfig-release.cmake +19 -0
  57. pyorbbecsdk/OrbbecSDKConfig.cmake +104 -0
  58. pyorbbecsdk/OrbbecSDKConfig.xml +2332 -0
  59. pyorbbecsdk/__init__.py +1 -0
  60. pyorbbecsdk/__version__.py +10 -0
  61. pyorbbecsdk/config/OrbbecSDKConfig.md +222 -0
  62. pyorbbecsdk/config/OrbbecSDKConfig.xml +2332 -0
  63. pyorbbecsdk/config/multi_device_sync_config.json +28 -0
  64. pyorbbecsdk/examples/.gitkeep +0 -0
  65. pyorbbecsdk/examples/README.md +26 -0
  66. pyorbbecsdk/examples/callback.py +303 -0
  67. pyorbbecsdk/examples/color.py +64 -0
  68. pyorbbecsdk/examples/coordinate_transform.py +184 -0
  69. pyorbbecsdk/examples/depth.py +107 -0
  70. pyorbbecsdk/examples/depth_work_mode.py +59 -0
  71. pyorbbecsdk/examples/device_firmware_update.py +155 -0
  72. pyorbbecsdk/examples/device_optional_depth_presets_update.py +142 -0
  73. pyorbbecsdk/examples/enumerate.py +118 -0
  74. pyorbbecsdk/examples/hdr.py +216 -0
  75. pyorbbecsdk/examples/hot_plug.py +160 -0
  76. pyorbbecsdk/examples/hw_d2c_align.py +135 -0
  77. pyorbbecsdk/examples/imu.py +60 -0
  78. pyorbbecsdk/examples/infrared.py +148 -0
  79. pyorbbecsdk/examples/logger.py +55 -0
  80. pyorbbecsdk/examples/metadata.py +64 -0
  81. pyorbbecsdk/examples/multi_device.py +169 -0
  82. pyorbbecsdk/examples/multi_streams.py +219 -0
  83. pyorbbecsdk/examples/net_device.py +177 -0
  84. pyorbbecsdk/examples/playback.py +277 -0
  85. pyorbbecsdk/examples/point_cloud.py +90 -0
  86. pyorbbecsdk/examples/post_processing.py +119 -0
  87. pyorbbecsdk/examples/preset.py +67 -0
  88. pyorbbecsdk/examples/quick_start.py +90 -0
  89. pyorbbecsdk/examples/recorder.py +238 -0
  90. pyorbbecsdk/examples/requirements.txt +9 -0
  91. pyorbbecsdk/examples/save_image_to_disk.py +106 -0
  92. pyorbbecsdk/examples/sync_align.py +109 -0
  93. pyorbbecsdk/examples/two_devices_sync.py +233 -0
  94. pyorbbecsdk/examples/utils.py +127 -0
  95. pyorbbecsdk/extensions/depthengine/depthengine.dll +0 -0
  96. pyorbbecsdk/extensions/depthengine/depthengine.lib +0 -0
  97. pyorbbecsdk/extensions/filters/FilterProcessor.dll +0 -0
  98. pyorbbecsdk/extensions/filters/ob_priv_filter.dll +0 -0
  99. pyorbbecsdk/extensions/firmwareupdater/firmwareupdater.dll +0 -0
  100. pyorbbecsdk/extensions/frameprocessor/ob_frame_processor.dll +0 -0
  101. pyorbbecsdk/pyorbbecsdk/__init__.py +1 -0
  102. pyorbbecsdk/pyorbbecsdk/__version__.py +10 -0
  103. pyorbbecsdk/pyorbbecsdk/config/OrbbecSDKConfig.md +222 -0
  104. pyorbbecsdk/pyorbbecsdk/config/OrbbecSDKConfig.xml +2332 -0
  105. pyorbbecsdk/pyorbbecsdk/config/multi_device_sync_config.json +28 -0
  106. pyorbbecsdk/pyorbbecsdk/examples/.gitkeep +0 -0
  107. pyorbbecsdk/pyorbbecsdk/examples/README.md +26 -0
  108. pyorbbecsdk/pyorbbecsdk/examples/callback.py +303 -0
  109. pyorbbecsdk/pyorbbecsdk/examples/color.py +64 -0
  110. pyorbbecsdk/pyorbbecsdk/examples/coordinate_transform.py +184 -0
  111. pyorbbecsdk/pyorbbecsdk/examples/depth.py +107 -0
  112. pyorbbecsdk/pyorbbecsdk/examples/depth_work_mode.py +59 -0
  113. pyorbbecsdk/pyorbbecsdk/examples/device_firmware_update.py +155 -0
  114. pyorbbecsdk/pyorbbecsdk/examples/device_optional_depth_presets_update.py +142 -0
  115. pyorbbecsdk/pyorbbecsdk/examples/enumerate.py +118 -0
  116. pyorbbecsdk/pyorbbecsdk/examples/hdr.py +216 -0
  117. pyorbbecsdk/pyorbbecsdk/examples/hot_plug.py +160 -0
  118. pyorbbecsdk/pyorbbecsdk/examples/hw_d2c_align.py +135 -0
  119. pyorbbecsdk/pyorbbecsdk/examples/imu.py +60 -0
  120. pyorbbecsdk/pyorbbecsdk/examples/infrared.py +148 -0
  121. pyorbbecsdk/pyorbbecsdk/examples/logger.py +55 -0
  122. pyorbbecsdk/pyorbbecsdk/examples/metadata.py +64 -0
  123. pyorbbecsdk/pyorbbecsdk/examples/multi_device.py +169 -0
  124. pyorbbecsdk/pyorbbecsdk/examples/multi_streams.py +219 -0
  125. pyorbbecsdk/pyorbbecsdk/examples/net_device.py +177 -0
  126. pyorbbecsdk/pyorbbecsdk/examples/playback.py +277 -0
  127. pyorbbecsdk/pyorbbecsdk/examples/point_cloud.py +90 -0
  128. pyorbbecsdk/pyorbbecsdk/examples/post_processing.py +119 -0
  129. pyorbbecsdk/pyorbbecsdk/examples/preset.py +67 -0
  130. pyorbbecsdk/pyorbbecsdk/examples/quick_start.py +90 -0
  131. pyorbbecsdk/pyorbbecsdk/examples/recorder.py +238 -0
  132. pyorbbecsdk/pyorbbecsdk/examples/requirements.txt +9 -0
  133. pyorbbecsdk/pyorbbecsdk/examples/save_image_to_disk.py +106 -0
  134. pyorbbecsdk/pyorbbecsdk/examples/sync_align.py +109 -0
  135. pyorbbecsdk/pyorbbecsdk/examples/two_devices_sync.py +233 -0
  136. pyorbbecsdk/pyorbbecsdk/examples/utils.py +127 -0
  137. pyorbbecsdk/pyorbbecsdk.cp310-win_amd64.pyd +0 -0
  138. 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)