digital-fauxice
Independent RGBI dust-and-scratch repair for the Nikon LS-5000, with byte-exact CPU and CUDA backends for the Digital ICE Normal profile.
File Explorer
- tests.yml
- dust-heal-synthetic-comparison.png
- cpu-fast-backend.md
- cuda-backend.md
- cuda-decision-record.md
- cuda-validation-environment.md
- dust-heal-comparison.md
- hybrid-repair-design.md
- input-contract.md
- metal-backend.md
- reverse-engineering.md
- validation.md
- cpu-fast-frame-1-parity.json
- cpu-fast-frame-2-parity.json
- cpu-stage-profile.json
- cuda-crop-parity.json
- cuda-frame-1-parity.json
- cuda-frame-2-parity.json
- cuda-stage-profile.json
- frame-1-public-receipt.json
- frame-2-public-receipt.json
- metal-frame1-parity.json
- metal-frame2-parity.json
- hybrid-repair.md
- acquisition.json
- main.rgbir16.npy
- prepass.rgbir16.npy
- 0001-inpainted.png
- 0001-input.png
- 0001-mask.png
- at-floor-mask.npy
- changed-mask.npy
- diagnostics-cache.json
- output.rgb16.npy
- score-plane.npy
- hybrid-receipt.json
- output-hybrid.rgb16.npy
- output.rgb16.npy
- routing.json
- run-metadata.json
- synth-mask.png
- README.md
- make_synthetic_inputs.py
- fauxce-hybrid-receipt-v2.schema.json
- __init__.py
- _source_pyproject.toml
- cache.py
- cli.py
- composite.py
- iopaint.py
- receipts.py
- routing.py
- test_cache.py
- test_cli.py
- test_composite.py
- test_iopaint.py
- test_receipts.py
- test_routing.py
- test_wheel_install.py
- .gitignore
- LICENSE
- pyproject.toml
- uv.lock
- __init__.py
- engine.py
- host_writer.py
- kernels.py
- process.py
- producer.py
- rowparams.py
- __init__.py
- engine.py
- kernels.py
- producer.py
- __init__.py
- engine.py
- kernels.py
- process.py
- producer.py
- __init__.py
- _source_pyproject.toml
- backend.py
- contracts.py
- dither.py
- engine.py
- output.py
- prepass.py
- producer_parameters.py
- profile.py
- reconstruction.py
- rng.py
- stage_parameters.py
- startup.py
- streaming.py
- x3a.py
- conftest.py
- metal_harness.py
- test_backend_contract.py
- test_contract.py
- test_core.py
- test_cuda_level1_primitives.py
- test_cuda_level2_tiles.py
- test_cuda_producer_parity.py
- test_diagnostics.py
- test_engine.py
- test_fast_cpu_bitexact.py
- test_fast_cpu_differential.py
- test_fast_cpu_producer_parity.py
- test_isolation.py
- test_metal_level1_primitives.py
- test_metal_level2_tiles.py
- test_metal_producer_parity.py
- test_metal_softfloat.py
- .gitignore
- CITATION.cff
- CONTRIBUTING.md
- DERIVATION.md
- LICENSE
- MANIFEST.in
- NOTICE
- pyproject.toml
- README.md
- SECURITY.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
