robotpy-cscore 2025.0.0b2__cp311-cp311-win_amd64.whl → 2025.1.1.0__cp311-cp311-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/__pycache__/__init__.cpython-311.pyc +0 -0
- cscore/__pycache__/_init_cscore.cpython-311.pyc +0 -0
- cscore/__pycache__/_logging.cpython-311.pyc +0 -0
- cscore/__pycache__/version.cpython-311.pyc +0 -0
- cscore/_cscore.cp311-win_amd64.pyd +0 -0
- cscore/_cscore.pyi +18 -0
- cscore/version.py +2 -2
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/METADATA +4 -4
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/RECORD +13 -13
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/WHEEL +1 -1
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/LICENSE +0 -0
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/entry_points.txt +0 -0
- {robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
cscore/_cscore.pyi
CHANGED
|
@@ -329,6 +329,24 @@ class CvSink(ImageSink):
|
|
|
329
329
|
with. The data is backed by data in the CvSink. It will be invalidated by
|
|
330
330
|
any grabFrame*() call on the sink.
|
|
331
331
|
|
|
332
|
+
:returns: Frame time, or 0 on error (call GetError() to obtain the error
|
|
333
|
+
message); the frame time is in the same time base as wpi::Now(),
|
|
334
|
+
and is in 1 us increments.
|
|
335
|
+
"""
|
|
336
|
+
def grabFrameDirectLastTime(self, image: numpy.ndarray, lastFrameTime: int, timeout: float = 0.225) -> int:
|
|
337
|
+
"""
|
|
338
|
+
Wait for the next frame and get the image.
|
|
339
|
+
Times out (returning 0) after timeout seconds.
|
|
340
|
+
The provided image will have the pixelFormat this class was constructed
|
|
341
|
+
with. The data is backed by data in the CvSink. It will be invalidated by
|
|
342
|
+
any grabFrame*() call on the sink.
|
|
343
|
+
|
|
344
|
+
If lastFrameTime is provided and non-zero, the sink will fill image with
|
|
345
|
+
the first frame from the source that is not equal to lastFrameTime. If
|
|
346
|
+
lastFrameTime is zero, the time of the current frame owned by the CvSource
|
|
347
|
+
is used, and this function will block until the connected CvSource provides
|
|
348
|
+
a new frame.
|
|
349
|
+
|
|
332
350
|
:returns: Frame time, or 0 on error (call GetError() to obtain the error
|
|
333
351
|
message); the frame time is in the same time base as wpi::Now(),
|
|
334
352
|
and is in 1 us increments.
|
cscore/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: robotpy-cscore
|
|
3
|
-
Version: 2025.0
|
|
3
|
+
Version: 2025.1.1.0
|
|
4
4
|
Summary: RobotPy bindings for cscore image processing library
|
|
5
5
|
Home-page: https://github.com/robotpy/robotpy-cscore
|
|
6
6
|
Author: RobotPy Development Team
|
|
@@ -9,9 +9,9 @@ License: BSD-3-Clause
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/x-rst
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: robotpy-wpiutil==2025.0
|
|
13
|
-
Requires-Dist: robotpy-wpinet==2025.0
|
|
14
|
-
Requires-Dist: pyntcore==2025.0
|
|
12
|
+
Requires-Dist: robotpy-wpiutil==2025.1.1.0
|
|
13
|
+
Requires-Dist: robotpy-wpinet==2025.1.1.0
|
|
14
|
+
Requires-Dist: pyntcore==2025.1.1.0
|
|
15
15
|
|
|
16
16
|
robotpy-cscore
|
|
17
17
|
==============
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
cscore/__init__.py,sha256=xtJaSt6Uiihii-R_9XYbQVovx_D3Q-tqZpnyt6i2s0I,1119
|
|
2
2
|
cscore/__main__.py,sha256=No4nfyEHnbuyavQ9yInscvbiEGFPxxse9klZ-DSVMhc,4588
|
|
3
|
-
cscore/_cscore.cp311-win_amd64.pyd,sha256=
|
|
4
|
-
cscore/_cscore.pyi,sha256=
|
|
3
|
+
cscore/_cscore.cp311-win_amd64.pyd,sha256=1LMG23UecvybYjj_jvFBrF7CVVUSbele0JIyPr56_1k,3597312
|
|
4
|
+
cscore/_cscore.pyi,sha256=ee7ZZD0ToofOFlZ05GqTx67uej0xBbmFgBKJ1fJECQA,58863
|
|
5
5
|
cscore/_init_cscore.py,sha256=IJoWfQi1FpW48Uez-o9vS8SVCArHlmCAGt1BZkmbZmY,267
|
|
6
6
|
cscore/_logging.py,sha256=uv1Shlu49aPgQpRn5yD2ybT4N8ewJS3qUFOn8YTffwg,333
|
|
7
7
|
cscore/grip.py,sha256=qC6MbWvVllpnnsm10f31gqq4_PMWI_G9GKt3PfOaUpo,1042
|
|
8
8
|
cscore/imagewriter.py,sha256=RAWRRhL3DLNampZJjdd7Ye_8P1AmiYAZsWhnwov5id0,4537
|
|
9
9
|
cscore/pkgcfg.py,sha256=nkuqOy-Oy0Kw0pi8YXX9KfQCviwNliFZZlSOi2slsiw,791
|
|
10
10
|
cscore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
cscore/version.py,sha256=
|
|
12
|
-
cscore/__pycache__/__init__.cpython-311.pyc,sha256=
|
|
13
|
-
cscore/__pycache__/_init_cscore.cpython-311.pyc,sha256=
|
|
14
|
-
cscore/__pycache__/_logging.cpython-311.pyc,sha256=
|
|
15
|
-
cscore/__pycache__/version.cpython-311.pyc,sha256=
|
|
11
|
+
cscore/version.py,sha256=okKD6v028VuAPyWiulU6a9Qzj_gRBik-sp0v1AUAk7Q,175
|
|
12
|
+
cscore/__pycache__/__init__.cpython-311.pyc,sha256=NycO83Jp6K7suvUjcs9W47IwV_6BARVOM_72lYZc2BA,1321
|
|
13
|
+
cscore/__pycache__/_init_cscore.cpython-311.pyc,sha256=hSzYtkCirAn4t5Oe-BwNV-balc4GzBkaVIxEWCXvevc,576
|
|
14
|
+
cscore/__pycache__/_logging.cpython-311.pyc,sha256=YdcKslM3Xk1Onm3hUZiGQnl0ceHIMRo5HZ3Y0J-eqHw,984
|
|
15
|
+
cscore/__pycache__/version.cpython-311.pyc,sha256=COQMAIbB_Lks8JGkMukjL7naSTn9xY5ublBM5d3hYmI,334
|
|
16
16
|
cscore/cvnp/README.md,sha256=197MQ-gG-pZf9YAUZqcHXLKk8au8WtxXrfFf7lnwHAo,1175
|
|
17
17
|
cscore/cvnp/cvnp.cpp,sha256=dE3cBEbVVXaEdULdxbzglt9elRCxhkcXjF69W_Ak6so,9216
|
|
18
18
|
cscore/cvnp/cvnp.h,sha256=021_w8fhAlnew4Nc88ypPAdT9sBPwPzXwGPRiGIY1_Q,14937
|
|
19
19
|
cscore/cvnp/cvnp_synonyms.cpp,sha256=ZpLZzmK5ZcrIgLfi_j7eJ_NXLNtcb8ymDWehYuVVHvo,2419
|
|
20
20
|
cscore/cvnp/cvnp_synonyms.h,sha256=MgU4yOOXMhGGLrKb06dX4nsQLtqkq_1gDE6ToR3mjFo,589
|
|
21
21
|
cscore/src/main.cpp,sha256=sXb-crcVv2JxivUGCqPkpYmjgeupf5-M9XXOrxkRiRw,737
|
|
22
|
-
robotpy_cscore-2025.0.
|
|
23
|
-
robotpy_cscore-2025.0.
|
|
24
|
-
robotpy_cscore-2025.0.
|
|
25
|
-
robotpy_cscore-2025.0.
|
|
26
|
-
robotpy_cscore-2025.0.
|
|
27
|
-
robotpy_cscore-2025.0.
|
|
22
|
+
robotpy_cscore-2025.1.1.0.dist-info/LICENSE,sha256=eday0nHMlO9Rc7a6n0ONgNEe6N20r5xNWivVL5n-fN4,3138
|
|
23
|
+
robotpy_cscore-2025.1.1.0.dist-info/METADATA,sha256=WQ9IUA2vUXVWIuBaZD8nNYWYY2OJNWdKfMuCKmy40-M,1096
|
|
24
|
+
robotpy_cscore-2025.1.1.0.dist-info/WHEEL,sha256=y4n9_669c4ZQLyT56MHjc_JUbnwtaZfMVMycweN557o,102
|
|
25
|
+
robotpy_cscore-2025.1.1.0.dist-info/entry_points.txt,sha256=ZOi1FKkpTmx8xBqUtdp6Z4IzoCKfwDOKJoVDAF9qjhE,38
|
|
26
|
+
robotpy_cscore-2025.1.1.0.dist-info/top_level.txt,sha256=yKRnfRQe07G2XO6XXYgsj9CN2obAQX3D3gsGvcewpVw,7
|
|
27
|
+
robotpy_cscore-2025.1.1.0.dist-info/RECORD,,
|
|
File without changes
|
{robotpy_cscore-2025.0.0b2.dist-info → robotpy_cscore-2025.1.1.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|