pyorbbec 1.0.1.2__tar.gz → 1.0.1.4__tar.gz
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.
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/PKG-INFO +1 -1
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/setup.py +1 -1
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbec.egg-info/PKG-INFO +1 -1
- pyorbbec-1.0.1.4/src/pyorbbecsdk/__init__.py +19 -0
- pyorbbec-1.0.1.2/src/pyorbbecsdk/__init__.py +0 -11
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/HISTORY.md +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/LICENSE +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/MANIFEST.in +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/NOTICE +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/README.md +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/pyproject.toml +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/requirements-dev.txt +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/setup.cfg +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbec.egg-info/SOURCES.txt +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbec.egg-info/dependency_links.txt +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbec.egg-info/not-zip-safe +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbec.egg-info/top_level.txt +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/OrbbecSDK.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/OrbbecSDK.lib +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/__version__.py +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/depthengine/depthengine.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/depthengine/depthengine.lib +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/filters/FilterProcessor.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/filters/ob_priv_filter.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/firmwareupdater/firmwareupdater.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/frameprocessor/ob_frame_processor.dll +0 -0
- {pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/pyorbbecsdk.cp313-win_amd64.pyd +0 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
# 设置日志处理器(建议保留,防止日志警告)
|
2
|
+
import logging
|
3
|
+
from logging import NullHandler
|
4
|
+
|
5
|
+
logging.getLogger(__name__).addHandler(NullHandler())
|
6
|
+
|
7
|
+
# 可选:版本信息
|
8
|
+
from .__version__ import __version__
|
9
|
+
|
10
|
+
# __init__.py
|
11
|
+
# 导入并重新导出FormatConvertFilter
|
12
|
+
from .pyorbbecsdk import * # 如果这行报错,尝试下面的方式
|
13
|
+
|
14
|
+
# 或者使用__all__列表
|
15
|
+
__all__ = [
|
16
|
+
'FormatConvertFilter', 'VideoFrame',
|
17
|
+
'OBFormat', 'OBConvertFormat', 'OBSensorType',
|
18
|
+
'Config', 'Pipeline' # 确保需要的类被公开
|
19
|
+
]
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# 设置日志处理器(建议保留,防止日志警告)
|
2
|
-
import logging
|
3
|
-
from logging import NullHandler
|
4
|
-
|
5
|
-
logging.getLogger(__name__).addHandler(NullHandler())
|
6
|
-
|
7
|
-
# 可选:版本信息
|
8
|
-
from .__version__ import __version__
|
9
|
-
|
10
|
-
import pyorbbecsdk
|
11
|
-
from pyorbbecsdk import FormatConvertFilter, VideoFrame
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/depthengine/depthengine.dll
RENAMED
File without changes
|
{pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/depthengine/depthengine.lib
RENAMED
File without changes
|
{pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/filters/FilterProcessor.dll
RENAMED
File without changes
|
File without changes
|
{pyorbbec-1.0.1.2 → pyorbbec-1.0.1.4}/src/pyorbbecsdk/extensions/firmwareupdater/firmwareupdater.dll
RENAMED
File without changes
|
File without changes
|
File without changes
|