Skip to main content

Color transfer between images

Project description

Color transfer between images

Requirements

  • numpy
  • opencv-python>=4.7.0.72
  • torch>=1.13.0

Usage

pip install color_transfer_py

Numpy usage

import cv2
from color_transfer import color_transfer

src = cv2.imread("examples/1/src.jpeg")
target = cv2.imread("examples/1/target.png")

out = color_transfer(src, target)

cv2.imwrite("examples/1/output.jpeg", out)

Pytorch usage

import torch
from color_transfer import color_transfer_pytorch

# In pytorch, you can run multiple images at once
# but images must have the same size

src = torch.rand(4, 3, 224, 224)
target = torch.rand(4, 3, 224, 224)

outs = color_transfer_pytorch(src, target)
# Outs shape: (4, 3, 224, 224), output range is [0, 1]

Transfer results

Source Target Output
c1 g1 g1
c1 g1 g1
c1 g1 g1
c1 g1 g1

Benchmark results

  • The benchmark results can be reproduce by running python3 benchmark.py
This implementation chia56028 implementation
0.02 second 1.337 second

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

color_transfer_py-0.0.5.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

color_transfer_py-0.0.5-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file color_transfer_py-0.0.5.tar.gz.

File metadata

  • Download URL: color_transfer_py-0.0.5.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.6

File hashes

Hashes for color_transfer_py-0.0.5.tar.gz
Algorithm Hash digest
SHA256 fd8e6178a6ce257bf486ccee5c02354b59e7b261b3cafc812a26361c43b2ed96
MD5 a97f863e851f272663cb56881addb30e
BLAKE2b-256 6778c7e609305cc423b3956abc95ed9eeef6f256f2884361e9e89238f4aff548

See more details on using hashes here.

File details

Details for the file color_transfer_py-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for color_transfer_py-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b07d2a7b4a18112f9e77c01c6d1b98fd715a5dbe52e1040c67bb0e3286588bac
MD5 721a649d82b80e791c3da3df75feb629
BLAKE2b-256 fe136da7b341f174c548fd1a706a4a399a1e6322a222046b852ad661c11b8ee8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page