Reconstructing images using Bezier curves and diffusing colors constrained by those curves.
The ideas belong to Orzan et al.
Vectorization algorithms are taken from this repo and adopted.
The project is developed using OpenGL
, OpenCV
, Eigen
, ImGui
and Qt
and is written in C++
.
This project has 3 dependencies and all of them is under Libs
folder.
I use ImGui
for GUI; OpenCV
for edge detection and Eigen
for vectorization.
OpenCV
's binaries were built with MSVC 2019 64bit
compiler.
- Install
CMake 3.25.1
or above. - Install
Visual Studio 2022
andMSVC C++ v143 Compiler
. - Install
Qt 6.7.3 MSVC2022 64bit
kit. - Set environment variable
Qt6_DIR
asC:\Qt\6.7.3\msvc2022_64
. - Clone the repo
git clone https://github.com/berkbavas/DiffusionCurveRenderer.git
. - Create a folder
mkdir Build
. - Enter the folder
cd Build
. - Run CMake
cmake ..
. - Open
DiffusionCurveRenderer.sln
withVisual Studio 2022
. - Build & Run with
Release
configuration.