skillfed

qudida

QUick and DIrty Domain Adaptation

qudida v0.0.4 539.6K downloads/30d#6,107 on PyPI23
License unclear DORMANT released

What it is and what it does

QuDiDA is a lightweight library for adapting image appearance at the pixel level by applying scikit-learn transformers to match a reference image's style. It wraps numpy, scikit-learn, and opencv-python-headless to enable quick, naive domain adaptation—treating it as an image augmentation technique rather than a production-grade solution.

The library works by taking a source image and a reference image, then using a scikit-learn transformer (such as PCA or other decomposition methods) to adjust the source image's pixel values to align with the target's characteristics. It is designed for speed and simplicity over accuracy, and the author notes it has not been tested in public benchmarks.

Use it for:

  • Augment training datasets by adapting source images to match target domain appearance before model training.
  • Quick style transfer between images using decomposition-based transformers without deep learning.
  • Preprocessing step to reduce visual domain shift in computer vision pipelines.
  • Rapid prototyping of domain adaptation ideas without heavy dependencies.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

QuDiDA performs pixel-level image domain adaptation using scikit-learn transformers, allowing you to adjust image style or appearance to match a reference image.

Yes, if you need a lightweight, quick pixel-level domain adaptation tool for prototyping or augmentation and are comfortable with dormant maintenance. No, if you require active support, production-grade accuracy, or a clearly licensed library. Verify the license in the repository first.

Install

qudida on PyPI

pip

pip install qudida

uv

uv add qudida

poetry

poetry add qudida

Installing qudida

Before you install

Installation is straightforward with low friction. The package is dormant (last commit 2023-12-30) but not archived, so it remains available; however, expect no active maintenance or updates.

License in practice

License status is unclear—no SPDX identifier or raw license text is available. You should verify the actual license terms in the repository before use, particularly if you plan to redistribute or use commercially.

Quickstart

pip install qudida

from qudida import DomainAdapter
from sklearn.decomposition import PCA

adapter = DomainAdapter(transformer=PCA(n_components=1), ref_img=reference_image)
result = adapter(source_image)

Requires opencv-python-headless and scikit-learn; transformer must be compatible with pixel-level data.

Verify before relying

  • Whether the package works reliably with modern scikit-learn and opencv-python-headless versions despite dormant status.
  • Actual license terms and any redistribution restrictions.
  • Real-world performance or accuracy compared to other domain adaptation approaches.

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.5.0)
Install friction low — pure-Python wheel
Runtime dependencies 4 — numpy, scikit-learn, typing-extensions, opencv-python-headless
Maintenance dormant — 1,831 days since the last release
Last repo commit
First released
Downloads 539,552/month — #6,107 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: qudida-0.0.4-py3-none-any.whl

Keywords: Machine Learning, Computer Vision

Programming Language :: PythonProgramming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8

Tags

image domain adaptationpixel-level style transferimage augmentationquick domain adaptationimage style matching
domain-adaptationimage-augmentationcomputer-vision

More Artificial Intelligence packages

Further reading