https://github.com/cspyridakis/opencv-example
This is a demo, 'hello world' like, OpenCV project usign C++
https://github.com/cspyridakis/opencv-example
computer-vision cpp opencv opencv-library
Last synced: 2 months ago
JSON representation
This is a demo, 'hello world' like, OpenCV project usign C++
- Host: GitHub
- URL: https://github.com/cspyridakis/opencv-example
- Owner: CSpyridakis
- License: mit
- Created: 2021-07-03T20:27:54.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-23T17:54:23.000Z (over 3 years ago)
- Last Synced: 2026-05-01T00:27:44.224Z (2 months ago)
- Topics: computer-vision, cpp, opencv, opencv-library
- Language: Shell
- Homepage:
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenCV-example 
This is a demo, 'hello world' like, [OpenCV](https://opencv.org/) project usign C++.
You can use it to check that the library is properly installed in your Linux setup.
## Structure
Follows basic C++ project tree structure
* include/ folder is used for header files
* src/ dir for source files
## Usage
Run `./handle -h` to see all available options. `handle` script is responsible to handle actions such as build, clean and run.
E.g. In order to build project just run: `./handle -b`
## Notes
1. To install [OpenCV](https://opencv.org/) on your Linux system visit [this](https://docs.opencv.org/master/df/d65/tutorial_table_of_content_introduction.html) link, or download and run [this](https://raw.githubusercontent.com/CSpyridakis/SCTT/master/shellScripts/Debian/install-opencv-debian-x86.sh) bash script (only for Debian-based systems) to automatically install from sources a basic version of [OpenCV](https://opencv.org/).
To download and install using one command the script that is mentioned above, run:
```
wget -O - https://raw.githubusercontent.com/CSpyridakis/SCTT/master/shellScripts/Debian/install-opencv-debian-x86.sh | bash -s -- --install
```
2. If you want to change files' names, you may need to update `handle` script also.