Virtual Painter using OpenCV with C++. This program can detect & virtually paint Pink, Sky Blue & Dark Green color using webcam feed.
- Requirements: C++ compiler (preferably GNU Compiler) & OpenCV needs to be installed in your PC. Webcam or some other device(e.g. SmartPhone) is needed for live video feed.
- Using the makefile
- open terminal in project directory
- use the following command:
$ make
$ ./'Virtual Painter'
- To clean the object files and build the project again from scratch use command
$ make clean
- Without using makefile :
$ g++ filename.cpp -o filename `pkg-config --cflags --libs opencv4`
$ ./filename
$ g++ filename.cpp -o filename `pkg-config --cflags --libs opencv4`
$ filename or $ filename.exe