https://github.com/azhng/vicinity
Real-Time Image Processing Pipeline.
https://github.com/azhng/vicinity
opencv
Last synced: about 1 year ago
JSON representation
Real-Time Image Processing Pipeline.
- Host: GitHub
- URL: https://github.com/azhng/vicinity
- Owner: Azhng
- Created: 2018-06-02T20:07:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-11T06:17:00.000Z (about 8 years ago)
- Last Synced: 2025-04-20T00:45:37.216Z (about 1 year ago)
- Topics: opencv
- Language: C++
- Homepage:
- Size: 70.3 KB
- Stars: 4
- Watchers: 0
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vicinity - ~~Distributed~~ Real-Time image processing pipeline
Design doc: https://docs.google.com/document/d/1QZ93JeKcHi5c9KIWQmusRuJG1kim8K3v0Ucr8kU5ZUc/edit?usp=sharing
## Phase 1 [x]:
Finalize pipeline API
## Phase 2 [WIP]:
Using type system to verify pipeline correctness at compile time
## Phase 3 [Spiking]:
Going distributed
## Build
This project was developed against C++17, OpenCV 4.0 and Boost 1.67.
``` bash
cd /path/to/viciniy
mkdir build/
cd build
# change the flags based on your needs
cmake -DRELEASE=OFF -DBUILD_TEST=ON -DBUILD_EXAMPLE=ON ..
make -j4
# to run test
ctest
```