Skip to content

QUick and DIrty Domain Adaptation

License

Notifications You must be signed in to change notification settings

vonschultz/qudida

 
 

Repository files navigation

QuDiDA (QUick and DIrty Domain Adaptation)

Upload release to PyPI

QuDiDA is a micro library for very naive though quick pixel level image domain adaptation via scikit-learn transformers. Is assumed to be used as image augmentation technique, while was not tested in public benchmarks.

Installation

pip install qudida

or

pip install git+https://github.com/arsenyinfo/qudida

Usage

import cv2

from sklearn.decomposition import PCA
from qudida import DomainAdapter

adapter = DomainAdapter(transformer=PCA(n_components=1), ref_img=cv2.imread('target.png'))
source = cv2.imread('source.png')
result = adapter(source)
cv2.imwrite('../result.png', result)

Example

Source image: source Target image (style donor): target Result with various adaptations: result

About

QUick and DIrty Domain Adaptation

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%