Is it possible to perform style transfer on my own images?

174 views Asked by At

I have a set of around 60 fractals (e.g

Fractal

And a set of 60 snacks (e.g

enter image description here

And I want to apply the style of the fractal on the snack.

Is this possible? Or must I take specifically images from an existing data set with a pre-trained images model?

Thanks

2

There are 2 answers

1
gdelab On BEST ANSWER

It depends whether the method involves training a model on style data or not.

At least one method does not require that at all, instead training a network on a classification task and then infering the style of an image during the style transfer. So you can use a model that has been pre-trained on images that you do not have, and then use it and your images to perform the style transfers.

There is some ready-to use code to do that : example

0
Nerveless_child On

This is possible as trained images models are quite robust to extract the style and content of an image, though the strength/quality will defer depending on the model you choose.