├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── read.py ├── requirements.txt ├── shm ├── __init__.py ├── reader.py ├── structures.py └── writer.py └── write.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/README.md -------------------------------------------------------------------------------- /read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/read.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | numpy 3 | posix_ipc 4 | -------------------------------------------------------------------------------- /shm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/shm/__init__.py -------------------------------------------------------------------------------- /shm/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/shm/reader.py -------------------------------------------------------------------------------- /shm/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/shm/structures.py -------------------------------------------------------------------------------- /shm/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/shm/writer.py -------------------------------------------------------------------------------- /write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bwsw/shared-ctypes-numpy-posix-ipc-python/HEAD/write.py --------------------------------------------------------------------------------