An open API service indexing awesome lists of open source software.

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.

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

```