Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duguyue100/pyaer
Low-level Python APIs for Accessing Neuromorphic Devices.
https://github.com/duguyue100/pyaer
amd64 arm64 event-camera neuromorphic-computing neuromorphic-engineering numpy python swig zmq
Last synced: 5 days ago
JSON representation
Low-level Python APIs for Accessing Neuromorphic Devices.
- Host: GitHub
- URL: https://github.com/duguyue100/pyaer
- Owner: duguyue100
- License: mit
- Created: 2017-09-29T11:11:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T02:21:16.000Z (9 months ago)
- Last Synced: 2024-11-15T02:54:09.116Z (about 1 month ago)
- Topics: amd64, arm64, event-camera, neuromorphic-computing, neuromorphic-engineering, numpy, python, swig, zmq
- Language: Python
- Homepage:
- Size: 737 KB
- Stars: 26
- Watchers: 8
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README-RPI.md
- License: LICENSE
Awesome Lists containing this project
README
# Build PyAER on Raspberry Pi
This is a working build instruction on Raspberry Pi 3B with Raspbian Stretch.
## Install dependencies
```bash
sudo apt-get install build-essential cmake pkg-config libusb-1.0-0-dev
sudo apt-get install automake bison libpcre3-dev
```## Install `libcaer`
The `libcaer` can be installed as follows
```bash
git clone https://gitlab.com/inivation/dv/libcaer.git
cd libcaer
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make -j4
sudo make install
```## Install `swig`
You can compile `swig` with the following steps:
```bash
git clone https://github.com/duguyue100/swig
cd swig
./autogen.sh
# choose one of the configure settings
./configure --with-python=$(command -v python) --without-python2 --without-pcre # for python 3
make -j4
sudo make install
```## Compile `pyaer`
Compile `pyaer` with the following steps:
```bash
git clone https://github.com/duguyue100/pyaer
sudo make install
```## Contacts
Yuhuang Hu
Email: [email protected]