Git Product home page Git Product logo

circle_painter's Introduction

Circle Painter

This program uses a background image to recreate a new target image. A binary mask must also be passed to tell the program which parts to recreate.

source mask
background out

How it works

The program selects pixels from the target image and then calculates the average color of different regions from the background image. The region with the average color closest to the selected pixel value is then placed where the pixel is on the image.

Running

First compile the script

./compile.sh

Then run

./main -t target_path -m mask_path -b background_path -a alpha -s steps

Where

  • target_path is where the image to be painted is;
  • mask_path is where the mask to what parts of the image to paint is;
  • background_path is the path of the image to use to reconstruct the target;
  • alpha is the maximum alpha (between 0 and 1);
  • step is the amount of pixels to move when taking circles from the image;

There is also a (much) slower python version (it is not a wrapper, but instead a rewrite) Run

python3 main.py -t target_path -m mask_path -b background_path -a alpha -s steps

Dependencies

The C++ program uses opencv and openmp. It is the recommended way to run, as it is much faster than the python implementation, specially on bigger images.

The python program uses skimage, numpy and nptyping.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.