https://github.com/faris771/opencv_task
Task2 in my software engineering internship, the Idea of this task is to get hands on Image processing using OpenCV in C++ Language. In this task, we are required to build a Live Web cam filters.
https://github.com/faris771/opencv_task
cpp image-processing opencv
Last synced: about 1 month ago
JSON representation
Task2 in my software engineering internship, the Idea of this task is to get hands on Image processing using OpenCV in C++ Language. In this task, we are required to build a Live Web cam filters.
- Host: GitHub
- URL: https://github.com/faris771/opencv_task
- Owner: faris771
- Created: 2023-08-17T12:31:01.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-26T09:56:09.000Z (almost 3 years ago)
- Last Synced: 2025-07-18T04:32:57.272Z (11 months ago)
- Topics: cpp, image-processing, opencv
- Language: C++
- Homepage:
- Size: 52.9 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenCV_Task
## About this project
Task2 in my software engineering internship at [Imagry](https://github.com/imagry), the Idea of this task is to get hands on Image processing using OpenCV in C++ Language.
In this task, we are required to build a Live Web cam filters.
## Project Description
the final output should be in this form:
| First Column | Second Column |
| ------------- | ------------- |
| FPS Frame | Blue Frame |
| Non Blue Frame | Logo Frame |
| Gray Frame | Mirror Frame |
https://github.com/faris771/OpenCV_Task/assets/70337488/69f72b8b-c4ac-475e-bd53-2a5780a09421
## Setup
To install the project, run the following command in the terminal:
```bash
git clone https://github.com/faris771/OpenCV_Task.git
cd OpenCV_Task
```
install OpenCV on your machine, follow this [link](https://www.geeksforgeeks.org/how-to-install-opencv-in-c-on-linux/)
Make sure Cmake is installed on your machine:
```bash
sudo snap install cmake --classic
```
After installing Cmake:
```bash
mkdir build
```
```bash
cd build
cmake ..
make
./OpenCV_Task
```