Skip to main content

Deep learning method for removing specular reflections from RGB images.

Project description

UnReflectAnything

Project PyPI Paper Demo Modelcard Wiki Colab Licence

RGB-Only Highlight Removal by Rendering Synthetic Specular Supervision

UnReflectAnything inputs any RGB image and removes specular highlights, returning a clean diffuse-only output. We trained UnReflectAnything by synthetizing specularities and supervising in DINOv3 feature space.

UnReflectAnything works on both natural indoor and surgical/endoscopic domain data.


examples

[!IMPORTANT] The maintainers are still working on an official API and Weights release for UnReflectAnything. In v1.0.2 the model is available from the API with pretrained=False by deafault, and forecefully setting it True will display a warning and weights will not be downloaded. Stay tuned for the official release!

Installation

pip install unreflectanything

Install UnReflectAnything as a Python Package.

The minimum required Python version is 3.11, but development and all experiments have been based on Python 3.12.

For GPU support, make sure PyTorch comes with CUDA version for your system (see PyTorch Get Started).

Setting up

After pip-installing, you can use the unreflectanything CLI command, which is also aliased to unreflect and ura. The three commands are equivalent.

With the CLI you can already download the model weights with

unreflectanything download --weights

and some sample images with

unreflectanything download --images

Weights are stored by default in ~/.cache/unreflectanything/weights (or $XDG_CACHE_HOME/unreflectanything/weights if set ; %LOCALAPPDATA%\unreflectanything for Windows). Use --output-dir to choose another location.

Both the weights and images are stored on the HuggingFace Model Repo.

Enable shell completion

Shell completion is available for the bash and zsh shells. Run

unreflectanything completion bash

and execute the echo ... command that gets printed.

Command Line Interface

Get an overview of the available CLI endpoints with

unreflectanything --help   # alias 'unreflect --help' alias 'ura --help'

Refer to the Wiki to get detailed documentation about each endpoint. We report a summary of the available subcommands. Remember that ura is aliased to the unreflectanything command

Subcommand Description Command
inference Run inference on image(s) to remove reflections ura inference /path/to/images -o /path/to/output
download Download checkpoint weights, sample images, notebooks, configs ura download --weights
cache Print cache directory or clear cached assets ura cache --dir or ura cache --clear
verify Verify weights installation and compatibility, or dataset directory structure ura verify --weights or ura verify --dataset --path /path/to/dataset
cite Print citation (BibTeX, APA, MLA, IEEE, plain) ura cite --bibtex
completion Print or install shell completion (bash/zsh) ura completion bash

Training, testing, and evaluation are available via the Python API; see the Wiki for details.

Python API

The same endpoints above are exposed as a Python API. Refer to the Wiki to get detailed documentation about each endpoint. A few examples are reported below

import unreflectanything as unreflect
import torch

# Get the model class (e.g. for custom setup or training)
ModelClass = unreflect.model()

# Get a pretrained model (torch.nn.Module) and run on batched RGB
unreflectmodel = unreflect.model(pretrained=True)  # uses cached weights; run 'unreflect download --weights' first
images = torch.rand(2, 3, 448, 448, device="cuda")  # [B, 3, H, W], values in [0, 1]
model_out = unreflectmodel(images)  # [B, 3, H, W] diffuse tensor

# File-based or tensor-based inference (one-shot, no model handle)
unreflect.inference("input.png", output="output.png")
unreflect.inference(images, output="output.png")
result = unreflect.inference(images)

# Cache directory (where weights, images, etc. are stored)
weights_dir = unreflect.cache("weights")

Contributing & Development

If you want to contribute or develop UnReflectAnything:

  1. Clone the repository:
    git clone https://github.com/alberto-rota/UnReflectAnything.git
    cd UnReflectAnything
    
  2. Install dependencies (we recommend a virtual environment with Python 3.12):
    pip install -r requirements.txt
    

Citation

If you include UnReflectAnything in your pipeline or research work, we encourage you cite our work. Get the citation entry with

unreflectanything cite --bibtex

or copy it directly from below

@misc{rota2025unreflectanything,
      title={UnReflectAnything: RGB-Only Highlight Removal by Rendering Synthetic Specular Supervision}, 
      author={Alberto Rota and Mert Kiray and Mert Asim Karaoglu and Patrick Ruhkamp and Elena De Momi and Nassir Navab and Benjamin Busam},
      year={2025},
      eprint={2512.09583},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2512.09583}, 
}

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

unreflectanything-1.0.3.tar.gz (265.2 kB view details)

Uploaded Source

Built Distribution

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

unreflectanything-1.0.3-py3-none-any.whl (285.4 kB view details)

Uploaded Python 3

File details

Details for the file unreflectanything-1.0.3.tar.gz.

File metadata

  • Download URL: unreflectanything-1.0.3.tar.gz
  • Upload date:
  • Size: 265.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.14

File hashes

Hashes for unreflectanything-1.0.3.tar.gz
Algorithm Hash digest
SHA256 9c5b01e798ed1de84a60c69a721df27bf0b4cf9a35712b6b61518dbbedbbdf8d
MD5 8a191c20913595c36cf4e5e19c35dd6c
BLAKE2b-256 95c65c141f8d07185064c726c7795819c2b75adfab2f10a1a96188785785f3c8

See more details on using hashes here.

File details

Details for the file unreflectanything-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for unreflectanything-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 02883be411856b4ab585d524574157822e99ba9948c3ab1aacab742e82a6a105
MD5 c147a719d0c40d8c02eddb2c90f63027
BLAKE2b-256 dd4d306e346e079c005a2849fd7f806cf46aa8ed5406107c1d8144f6c4a9495a

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