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.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
pytest
Python 테스트 실행.
더 많은 정보: <https://docs.pytest.org/en/latest/how-to/usage.html>.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
특정 파일에서 테스트 실행:
pytest -k {{expression}}
특정 [k]eyword 표현식과 일치하는 테스트 실행:
pytest {{[-x|--exitfirst]}}
테스트가 실패하거나 오류가 발생하면 즉시 종료:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
uv sync
설명 보기 ▼
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:
