https://github.com/enhuiz/cvasgmt
https://github.com/enhuiz/cvasgmt
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/enhuiz/cvasgmt
- Owner: enhuiz
- Created: 2017-04-07T02:32:34.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-06T11:31:13.000Z (about 8 years ago)
- Last Synced: 2025-01-07T18:29:19.612Z (5 months ago)
- Language: TeX
- Size: 164 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Computer Vision Assignment
This is a web image processing system based on boost asio, which is used to present the assignment of computer vision course of Software Engineering Department, SCUT, given by Dr. Shaowu Peng.
# Build
## Dependencies
- [OpenCV 3.2](http://opencv.org/)
- [OpenCV Contrib](https://github.com/opencv/opencv_contrib)
- [Boost Asio](http://www.boost.org/)## CMake
**under ./**
```
$ mkdir build
$ cd build
$ cmake ..
```## Make (Linux)
**under ./build**
```
$ make
```## Run
**under ./**
```
$ bin/app
```## Don't Do This
```
# It's necessary to call app under ./, for app refers to some relative paths.
# The following cmds are not right, which will cause a 404 problem
$ cd bin
$ app
```