# Image stylization
Apply the style of one image to another image.
# Demo
Input image
Click
to select your own image
to select your own image
Input style
Click
to select your own image
to select your own image
Given the image of the flower on the left and painting on the right, this application generates an image of the flower in the style of the painting.
# Use it for
- Enabling your users to create fun modifications of their images
- Ensuring a consistent style of cover images
- Generating avatars
# Installation
After you've followed the installation instructions, run the following to install the application:
php vendor/funcai/funcai-php/install-stylization.php
# Usage
$model = new \FuncAI\Models\Stylization();
$result = $model->predict([
$pathToInputImage,
$pathToStyleImage,
]);