logo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions

Updated 2 years ago

img2img-translation

Cartoonize with CartoonGAN

author: Shiyu


Description

Convert an image into an cartoon image using CartoonGAN.


Code Example

Load an image from path './test.png'.

Write the pipeline in simplified style:

import towhee

towhee.glob('./test.png') \
      .image_decode() \
      .img2img_translation.cartoongan(model_name = 'Hayao') \
      .show()

Write a pipeline with explicit inputs/outputs name specifications:

import towhee
      
towhee.glob['path']('./test.png') \
      .image_decode['path', 'origin']() \
      .img2img_translation.cartoongan['origin', 'hayao'](model_name = 'Hayao') \
      .img2img_translation.cartoongan['origin', 'hosoda'](model_name = 'Hosoda') \
      .img2img_translation.cartoongan['origin', 'paprika'](model_name = 'Paprika') \
      .img2img_translation.cartoongan['origin', 'shinkai'](model_name = 'Shinkai') \
      .select['origin', 'hayao', 'hosoda', 'paprika', 'shinkai']() \
      .show()
results1


Factory Constructor

Create the operator via the following factory method

img2img_translation.cartoongan(model_name = 'which anime model to use')

Model options:

  • Hayao
  • Hosoda
  • Paprika
  • Shinkai


Interface

Takes in a numpy rgb image in channels first. It transforms input into animated image in numpy form.

Parameters:

model_name: str

​ Which model to use for transfer.

framework: str

​ Which ML framework being used, for now only supports PyTorch.

device: str

​ Which device being used('cpu' or 'cuda'), defaults to 'cpu'.

Returns: towhee.types.Image (a sub-class of numpy.ndarray)

​ The new image.

ChengZi 4695f0be8f add requirement 10 Commits
folder-icon pytorch Add logger 2 years ago
file-icon .gitattributes
883 B
download-icon
add gitattributes 2 years ago
file-icon .gitignore
3.0 KiB
download-icon
Add cartoongan 2 years ago
file-icon README.md
1.8 KiB
download-icon
Update README 2 years ago
file-icon __init__.py
116 B
download-icon
Add cartoongan 2 years ago
file-icon cartoongan.py
1.7 KiB
download-icon
Update README 2 years ago
file-icon requirements.txt
54 B
download-icon
add requirement 2 years ago
file-icon results1.png
38 KiB
download-icon
Update README 2 years ago
file-icon results2.png
731 KiB
download-icon
Update README 2 years ago
file-icon test.png
120 KiB
download-icon
Update README 2 years ago