robotpy-cscore 2025.3.2.2__cp310-cp310-win_amd64.whl → 2027.0.0a2__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.
Potentially problematic release.
This version of robotpy-cscore might be problematic. Click here for more details.
- cscore/_cscore.cp310-win_amd64.lib +0 -0
- cscore/_cscore.cp310-win_amd64.pyd +0 -0
- cscore/_cscore.pyi +6 -48
- cscore/src/main.cpp +2 -2
- cscore/version.py +1 -1
- {robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/METADATA +4 -4
- {robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/RECORD +10 -10
- {robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/WHEEL +0 -0
- {robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/entry_points.txt +0 -0
- {robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
Binary file
|
cscore/_cscore.pyi
CHANGED
|
@@ -50,52 +50,6 @@ class CameraServer:
|
|
|
50
50
|
"""
|
|
51
51
|
kBasePort: typing.ClassVar[int] = 1181
|
|
52
52
|
@staticmethod
|
|
53
|
-
@typing.overload
|
|
54
|
-
def addAxisCamera(host: str) -> AxisCamera:
|
|
55
|
-
"""
|
|
56
|
-
Adds an Axis IP camera.
|
|
57
|
-
|
|
58
|
-
This overload calls AddAxisCamera() with name "Axis Camera".
|
|
59
|
-
|
|
60
|
-
:deprecated: Call StartAutomaticCapture with a HttpCamera instead.
|
|
61
|
-
|
|
62
|
-
:param host: Camera host IP or DNS name (e.g. "10.x.y.11")
|
|
63
|
-
"""
|
|
64
|
-
@staticmethod
|
|
65
|
-
@typing.overload
|
|
66
|
-
def addAxisCamera(hosts: list[str]) -> AxisCamera:
|
|
67
|
-
"""
|
|
68
|
-
Adds an Axis IP camera.
|
|
69
|
-
|
|
70
|
-
This overload calls AddAxisCamera() with name "Axis Camera".
|
|
71
|
-
|
|
72
|
-
:deprecated: Call StartAutomaticCapture with a HttpCamera instead.
|
|
73
|
-
|
|
74
|
-
:param hosts: Array of Camera host IPs/DNS names
|
|
75
|
-
"""
|
|
76
|
-
@staticmethod
|
|
77
|
-
@typing.overload
|
|
78
|
-
def addAxisCamera(name: str, host: str) -> AxisCamera:
|
|
79
|
-
"""
|
|
80
|
-
Adds an Axis IP camera.
|
|
81
|
-
|
|
82
|
-
:deprecated: Call StartAutomaticCapture with a HttpCamera instead.
|
|
83
|
-
|
|
84
|
-
:param name: The name to give the camera
|
|
85
|
-
:param host: Camera host IP or DNS name (e.g. "10.x.y.11")
|
|
86
|
-
"""
|
|
87
|
-
@staticmethod
|
|
88
|
-
@typing.overload
|
|
89
|
-
def addAxisCamera(name: str, hosts: list[str]) -> AxisCamera:
|
|
90
|
-
"""
|
|
91
|
-
Adds an Axis IP camera.
|
|
92
|
-
|
|
93
|
-
:deprecated: Call StartAutomaticCapture with a HttpCamera instead.
|
|
94
|
-
|
|
95
|
-
:param name: The name to give the camera
|
|
96
|
-
:param hosts: Array of Camera host IPs/DNS names
|
|
97
|
-
"""
|
|
98
|
-
@staticmethod
|
|
99
53
|
def addCamera(camera: VideoSource) -> None:
|
|
100
54
|
"""
|
|
101
55
|
Adds an already created camera.
|
|
@@ -1649,8 +1603,12 @@ def _setLogger(func: typing.Callable[[typing.SupportsInt, str, typing.SupportsIn
|
|
|
1649
1603
|
...
|
|
1650
1604
|
def runMainRunLoop() -> None:
|
|
1651
1605
|
...
|
|
1652
|
-
def runMainRunLoopTimeout(
|
|
1653
|
-
|
|
1606
|
+
def runMainRunLoopTimeout(timeout: typing.SupportsFloat) -> int:
|
|
1607
|
+
"""
|
|
1608
|
+
Runs main run loop with timeout.
|
|
1609
|
+
|
|
1610
|
+
:param timeout: Timeout in seconds.
|
|
1611
|
+
"""
|
|
1654
1612
|
def stopMainRunLoop() -> None:
|
|
1655
1613
|
...
|
|
1656
1614
|
_cleanup: typing.Any # value = <capsule object>
|
cscore/src/main.cpp
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#include "cscore_cpp.h"
|
|
5
5
|
|
|
6
|
-
#ifdef
|
|
6
|
+
#ifdef __FRC_SYSTEMCORE__
|
|
7
7
|
extern "C" {
|
|
8
8
|
void WPI_Impl_SetupNowUseDefaultOnRio(void);
|
|
9
9
|
}
|
|
@@ -23,7 +23,7 @@ SEMIWRAP_PYBIND11_MODULE(m) {
|
|
|
23
23
|
});
|
|
24
24
|
m.add_object("_cleanup", cleanup);
|
|
25
25
|
|
|
26
|
-
#ifdef
|
|
26
|
+
#ifdef __FRC_SYSTEMCORE__
|
|
27
27
|
m.def("_setupWpiNow", WPI_Impl_SetupNowUseDefaultOnRio);
|
|
28
28
|
#endif
|
|
29
29
|
}
|
cscore/version.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotpy-cscore
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2027.0.0a2
|
|
4
4
|
Summary: RobotPy bindings for cscore image processing library
|
|
5
5
|
Project-URL: Source code, https://github.com/robotpy/mostrobotpy
|
|
6
6
|
Author-email: RobotPy Development Team <robotpy@googlegroups.com>
|
|
7
7
|
License-Expression: BSD-3-Clause
|
|
8
8
|
License-File: LICENSE
|
|
9
|
-
Requires-Dist: pyntcore==
|
|
10
|
-
Requires-Dist: robotpy-wpinet==
|
|
11
|
-
Requires-Dist: robotpy-wpiutil==
|
|
9
|
+
Requires-Dist: pyntcore==2027.0.0a2
|
|
10
|
+
Requires-Dist: robotpy-wpinet==2027.0.0a2
|
|
11
|
+
Requires-Dist: robotpy-wpiutil==2027.0.0a2
|
|
@@ -3,16 +3,16 @@ cscore/__main__.py,sha256=No4nfyEHnbuyavQ9yInscvbiEGFPxxse9klZ-DSVMhc,4588
|
|
|
3
3
|
cscore/_logging.py,sha256=uv1Shlu49aPgQpRn5yD2ybT4N8ewJS3qUFOn8YTffwg,333
|
|
4
4
|
cscore/grip.py,sha256=qC6MbWvVllpnnsm10f31gqq4_PMWI_G9GKt3PfOaUpo,1042
|
|
5
5
|
cscore/imagewriter.py,sha256=RAWRRhL3DLNampZJjdd7Ye_8P1AmiYAZsWhnwov5id0,4537
|
|
6
|
-
cscore/version.py,sha256=
|
|
6
|
+
cscore/version.py,sha256=m5JIPP5xLGWsNzeDUjmwb5-JU2GJQyit1d9COO9ZZps,93
|
|
7
7
|
cscore/cvnp/README.md,sha256=197MQ-gG-pZf9YAUZqcHXLKk8au8WtxXrfFf7lnwHAo,1175
|
|
8
8
|
cscore/cvnp/cvnp.cpp,sha256=dE3cBEbVVXaEdULdxbzglt9elRCxhkcXjF69W_Ak6so,9216
|
|
9
9
|
cscore/cvnp/cvnp.h,sha256=021_w8fhAlnew4Nc88ypPAdT9sBPwPzXwGPRiGIY1_Q,14937
|
|
10
10
|
cscore/cvnp/cvnp_synonyms.cpp,sha256=ZpLZzmK5ZcrIgLfi_j7eJ_NXLNtcb8ymDWehYuVVHvo,2419
|
|
11
11
|
cscore/cvnp/cvnp_synonyms.h,sha256=MgU4yOOXMhGGLrKb06dX4nsQLtqkq_1gDE6ToR3mjFo,589
|
|
12
|
-
cscore/src/main.cpp,sha256=
|
|
13
|
-
cscore/_cscore.cp310-win_amd64.lib,sha256=
|
|
14
|
-
cscore/_cscore.cp310-win_amd64.pyd,sha256=
|
|
15
|
-
cscore/_cscore.pyi,sha256=
|
|
12
|
+
cscore/src/main.cpp,sha256=fCZIJjUf7Evy7Dib58Mtm-nGmcknwTHqush1VGBP8cA,757
|
|
13
|
+
cscore/_cscore.cp310-win_amd64.lib,sha256=pld6n9k8mRMjJnAu0D6JQZaDLJITKwwbx_BB0NEG-Sg,2012
|
|
14
|
+
cscore/_cscore.cp310-win_amd64.pyd,sha256=Zst1hAiWFOMV5a6b7MJUfbSECbsiffvjNEiJjq3c-hw,3682304
|
|
15
|
+
cscore/_cscore.pyi,sha256=07nK9TE6j31n0hInXbzb7hjWmugeWF-qkYMrP2X0LIw,57303
|
|
16
16
|
cscore/_init__cscore.py,sha256=-yKGqNCAEqvHZ2kbrDeNapB2BcNMF76wBh4S1nKAU-4,156
|
|
17
17
|
cscore/cscore-casters.pc,sha256=_Mf7zY4dTBwzS0oX4z9YIIg-RCzCVh3AIs_tPVAjBo0,200
|
|
18
18
|
cscore/cscore-casters.pybind11.json,sha256=OhrB1ZkzUlHqaL5_tPr0hvifkq13qZZ2pbXVSprxLho,89
|
|
@@ -35,8 +35,8 @@ cscore/trampolines/cs__VideoProperty.hpp,sha256=AvE0I2LcbUvrXuPa28afi2bCSsjzj8bx
|
|
|
35
35
|
cscore/trampolines/cs__VideoSink.hpp,sha256=wdIqcz7YcJU4mMfgVuLyZg7Tedl2iaBxAPzv6siIUSI,181
|
|
36
36
|
cscore/trampolines/cs__VideoSource.hpp,sha256=tuOysl9BxSX0CSjRvFOqnhtPEH78wHGNVOK_dMkOjU8,183
|
|
37
37
|
cscore/trampolines/frc__CameraServer.hpp,sha256=HrifiweHkUgzh3snsOD0y0YIE8rE_ovyg2WFnKh2Xbk,248
|
|
38
|
-
robotpy_cscore-
|
|
39
|
-
robotpy_cscore-
|
|
40
|
-
robotpy_cscore-
|
|
41
|
-
robotpy_cscore-
|
|
42
|
-
robotpy_cscore-
|
|
38
|
+
robotpy_cscore-2027.0.0a2.dist-info/METADATA,sha256=ImEMm-M3PihIxTTQrIOHzPkjZeFLto-WmQ0Z7pSDjiA,432
|
|
39
|
+
robotpy_cscore-2027.0.0a2.dist-info/WHEEL,sha256=gV2QQIehTwdgcZTuYrv3t7xf38GP96yAbc9cM4-HSKA,97
|
|
40
|
+
robotpy_cscore-2027.0.0a2.dist-info/entry_points.txt,sha256=MTVv-2rIw51vWKhX4bVj581sChRKQvZp9WTUlp3mGiY,53
|
|
41
|
+
robotpy_cscore-2027.0.0a2.dist-info/licenses/LICENSE,sha256=eday0nHMlO9Rc7a6n0ONgNEe6N20r5xNWivVL5n-fN4,3138
|
|
42
|
+
robotpy_cscore-2027.0.0a2.dist-info/RECORD,,
|
|
File without changes
|
{robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{robotpy_cscore-2025.3.2.2.dist-info → robotpy_cscore-2027.0.0a2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|