pyapriltags 3.4.2.1__py3-none-win32.whl → 3.4.3.1__py3-none-win32.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.
- pyapriltags/apriltags.py +2 -2
- pyapriltags/libapriltag.dll +0 -0
- {pyapriltags-3.4.2.1.dist-info → pyapriltags-3.4.3.1.dist-info}/METADATA +1 -1
- pyapriltags-3.4.3.1.dist-info/RECORD +9 -0
- pyapriltags-3.4.2.1.dist-info/RECORD +0 -9
- {pyapriltags-3.4.2.1.dist-info → pyapriltags-3.4.3.1.dist-info}/LICENSE.md +0 -0
- {pyapriltags-3.4.2.1.dist-info → pyapriltags-3.4.3.1.dist-info}/WHEEL +0 -0
- {pyapriltags-3.4.2.1.dist-info → pyapriltags-3.4.3.1.dist-info}/top_level.txt +0 -0
pyapriltags/apriltags.py
CHANGED
@@ -41,7 +41,7 @@ class _Matd(ctypes.Structure):
|
|
41
41
|
_fields_ = [
|
42
42
|
('nrows', ctypes.c_int),
|
43
43
|
('ncols', ctypes.c_int),
|
44
|
-
('data', ctypes.c_double
|
44
|
+
('data', ctypes.POINTER(ctypes.c_double)),
|
45
45
|
]
|
46
46
|
|
47
47
|
|
@@ -133,7 +133,7 @@ def _image_u8_get_array(img_ptr):
|
|
133
133
|
|
134
134
|
def _matd_get_array(mat_ptr):
|
135
135
|
return _ptr_to_array2d(ctypes.c_double,
|
136
|
-
mat_ptr.contents.data,
|
136
|
+
mat_ptr.contents.data.contents,
|
137
137
|
int(mat_ptr.contents.nrows),
|
138
138
|
int(mat_ptr.contents.ncols))
|
139
139
|
|
pyapriltags/libapriltag.dll
CHANGED
Binary file
|
@@ -0,0 +1,9 @@
|
|
1
|
+
pyapriltags/__init__.py,sha256=S3uf8pSD4venPPYD1YA9Q3w5k0oZVV66ZDMUNn_JI0s,91
|
2
|
+
pyapriltags/apriltags.py,sha256=kxR84eI_dxPfOmCqCxCJoRw2C9k_5gTlpUq52NXdtdE,16802
|
3
|
+
pyapriltags/libapriltag.dll,sha256=88WuP20nyX5oJyR8K3TlvnXJ9qilbGgEZVM6gmFvwPg,1945524
|
4
|
+
pyapriltags/py.typed,sha256=qDGZVT98wnqGGe5eyNJGlayNkP5QxORhXujGHzTPrnE,97
|
5
|
+
pyapriltags-3.4.3.1.dist-info/LICENSE.md,sha256=bUZetg0KmQ99yduHpQ7EMooMRjdfDcbincED4aQh3Ig,3044
|
6
|
+
pyapriltags-3.4.3.1.dist-info/METADATA,sha256=zhYBhX77n4hWZ0E3ryDvx9OhPrRj0Cf97H9Kmn_vdPc,12745
|
7
|
+
pyapriltags-3.4.3.1.dist-info/WHEEL,sha256=IvMpNSrdjsF1-j47TwHzkg3me4kdrqF21OaDAsKYs1k,93
|
8
|
+
pyapriltags-3.4.3.1.dist-info/top_level.txt,sha256=D17ubblm5a_QJj7B7t4wSOqaMCSEoXWIMns0Wc2Tmvs,12
|
9
|
+
pyapriltags-3.4.3.1.dist-info/RECORD,,
|
@@ -1,9 +0,0 @@
|
|
1
|
-
pyapriltags/__init__.py,sha256=S3uf8pSD4venPPYD1YA9Q3w5k0oZVV66ZDMUNn_JI0s,91
|
2
|
-
pyapriltags/apriltags.py,sha256=PxbPK2b8GKxI-1hBNDri--uGQa-_ueN21bv82ik3jR4,16781
|
3
|
-
pyapriltags/libapriltag.dll,sha256=CCDeux5uxSwYYoRCIEDWvXAPUzFggQAuTdvPLYrgp_Q,1941508
|
4
|
-
pyapriltags/py.typed,sha256=qDGZVT98wnqGGe5eyNJGlayNkP5QxORhXujGHzTPrnE,97
|
5
|
-
pyapriltags-3.4.2.1.dist-info/LICENSE.md,sha256=bUZetg0KmQ99yduHpQ7EMooMRjdfDcbincED4aQh3Ig,3044
|
6
|
-
pyapriltags-3.4.2.1.dist-info/METADATA,sha256=obtF3q56vaP7noe02ZRNcjTiL4XtKiIizuqx8Uba_6I,12745
|
7
|
-
pyapriltags-3.4.2.1.dist-info/WHEEL,sha256=IvMpNSrdjsF1-j47TwHzkg3me4kdrqF21OaDAsKYs1k,93
|
8
|
-
pyapriltags-3.4.2.1.dist-info/top_level.txt,sha256=D17ubblm5a_QJj7B7t4wSOqaMCSEoXWIMns0Wc2Tmvs,12
|
9
|
-
pyapriltags-3.4.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|