forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3760265
commit f78d8db
Showing
43 changed files
with
113 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added
BIN
+786 KB
...thai_viewer/_backend/compilers/3.9/pyarmor_runtime_007125/linux_x86_64/pyarmor_runtime.so
Binary file not shown.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
rerun_py/depthai_viewer/_backend/obscured_utilities/utilities/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Pyarmor 9.0.6 (pro), 007125, Dynamic-recalibration, 2024-12-06T00:30:22.575287 | ||
from .pyarmor_runtime_007125 import __pyarmor__ | ||
__pyarmor__(__name__, __file__, b'PY007125\x00\x03\n\x00o\r\r\n\x80\x00\x01\x00\x08\x00\x00\x00\x04\x00\x00\x00@\x00\x00\x00\x88\x00\x00\x00\x12\t\x06\x00\x93\x13\xa9\x9d/\t/\xf9\xaa\xb7\xab\xf6\x0e\xc0\x9c\xa3\x00\x00\x00\x00\x00\x00\x00\x00\xcc\xe5\xe3DL\x9a)\xe6w\xd9\t \xbfj\n\x0bq$\x11*\\\xe1\x1a\xb7\xf2I\xcd\x0e\xde\xbc\x9eg\xc8\xc2\x82\x152\xe0o\xd0\xaa\xd3\xe9D\xfa\xc2\xa2W\x119_l\xd6v2K\xf8\xb7\xab\x9a\xd7\x91{\xd0\x93\xb6_b+B\xd9\x14\x12k^7\xbe\x16\xb2\xe1\xdc\xd1\x92\xce$RC\xc4\xfdo\xad\xb8)q\xba\xe1gA\x90\x08\x9c\xafk\x00\x1d\xa0\xb6\xf7\x0c(\xe5v\\\xf1\x99\xbe\x0b\x10\xf7\xe53\xfd^vF\xf8\xe6\x83i\xfdS\x98#kb\xa9') |
3 changes: 3 additions & 0 deletions
3
rerun_py/depthai_viewer/_backend/obscured_utilities/utilities/calibration_handler.py
Large diffs are not rendered by default.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
rerun_py/depthai_viewer/_backend/obscured_utilities/utilities/display_handler.py
Large diffs are not rendered by default.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
...y/depthai_viewer/_backend/obscured_utilities/utilities/pyarmor_runtime_007125/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Pyarmor 9.0.6 (pro), 007125, 2024-12-06T00:30:21.941053 | ||
def __pyarmor__(): | ||
import platform | ||
import sys | ||
from struct import calcsize | ||
|
||
def format_system(): | ||
plat = platform.system().lower() | ||
plat = ('cygwin' if plat.startswith('cygwin') else | ||
'linux' if plat.startswith('linux') else | ||
'freebsd' if plat.startswith( | ||
('freebsd', 'openbsd', 'isilon onefs')) else plat) | ||
if plat == 'linux': | ||
if hasattr(sys, 'getandroidapilevel'): | ||
plat = 'android' | ||
else: | ||
cname, cver = platform.libc_ver() | ||
if cname == 'musl': | ||
plat = 'alpine' | ||
elif cname == 'libc': | ||
plat = 'android' | ||
return plat | ||
|
||
def format_machine(): | ||
mach = platform.machine().lower() | ||
arch_table = ( | ||
('x86', ('i386', 'i486', 'i586', 'i686', 'x86')), | ||
('x86_64', ('x64', 'x86_64', 'amd64', 'intel')), | ||
('arm', ('armv5',)), | ||
('armv6', ('armv6l',)), | ||
('armv7', ('armv7l',)), | ||
('aarch32', ('aarch32',)), | ||
('aarch64', ('aarch64', 'arm64')), | ||
('ppc64le', ('ppc64le',)), | ||
('mips32el', ('mipsel', 'mips32el')), | ||
('mips64el', ('mips64el',)), | ||
('riscv64', ('riscv64',)), | ||
) | ||
for alias, archlist in arch_table: | ||
if mach in archlist: | ||
mach = alias | ||
break | ||
return mach | ||
|
||
plat, mach = format_system(), format_machine() | ||
if plat == 'windows' and mach == 'x86_64': | ||
bitness = calcsize('P'.encode()) * 8 | ||
if bitness == 32: | ||
mach = 'x86' | ||
# mach = 'universal' if plat == 'darwin' else mach | ||
name = '.'.join(['_'.join([plat, mach]), 'pyarmor_runtime']) | ||
return __import__(name, globals(), locals(), ['__pyarmor__'], level=1) | ||
__pyarmor__ = __pyarmor__().__pyarmor__ |
Binary file added
BIN
+618 KB
...nd/obscured_utilities/utilities/pyarmor_runtime_007125/windows_x86_64/pyarmor_runtime.pyd
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.