TriRGB
Trichromatic narrowband-RGB film scanning — capture a color negative as three R/G/B exposures and composite to a 16-bit linear file for mask-free inversion (macOS; Sony a7CR + jackw01 Scanlight).
파일 탐색기
- automation.md
- ax-id-reference.md
- calibration_notes.md
- interactive_user_guide.html
- OPERATING.md
- optical_dry_run.md
- REVIEW-POLICY.md
- __init__.py
- cli.py
- device.py
- protocol.py
- __init__.py
- test_cli.py
- test_device.py
- test_protocol.py
- pyproject.toml
- README.md
- main.cpp
- INSTALL.md
- .gitignore
- CMakeLists.txt
- README.md
- __init__.py
- batch.py
- __init__.py
- test_batch.py
- pyproject.toml
- README.md
- __init__.py
- contracts.py
- fixtures.py
- __init__.py
- test_contracts.py
- test_fixtures.py
- pyproject.toml
- README.md
- __init__.py
- checks.py
- composite.py
- dng.py
- ffc.py
- icc.py
- rebate_detect.py
- triplet_positive.py
- __init__.py
- test_checks.py
- test_composite.py
- test_dng.py
- test_ffc.py
- test_icc.py
- test_inversion.py
- test_real_arw.py
- test_rebate_detect.py
- test_tone_curve.py
- test_triplet_positive.py
- PLAN_hd_curve_improvements.md
- pyproject.toml
- README.md
- __init__.py
- test_app_calibrate_routes.py
- test_calibrate_exposure.py
- test_capture_flats.py
- test_composite_status.py
- test_composite_worker.py
- test_inbox.py
- test_orchestrator.py
- index.html
- __init__.py
- app.py
- calibrate_exposure.py
- capture_flats.py
- composite_worker.py
- inbox.py
- orchestrator.py
- sony_persist.py
- pyproject.toml
- README.md
- AppIcon.icns
- make_icon.py
- scanlight-logo.png
- scanlight-logo.svg
- AccessibilityIDs.swift
- CalibrationResult.swift
- CalibrationWizardCodable.swift
- CalibrationWizardView.swift
- CalibrationWizardViewModel.swift
- DesignSystem.swift
- FakeBridge.swift
- FilmStockManagerView.swift
- OrchestratorClient.swift
- PositiveInversionView.swift
- PythonToolLocator.swift
- RebateRegion.swift
- ScanlightAppMain.swift
- ScanlightView.swift
- ScanlightViewModel.swift
- ScanSessionState.swift
- ScanSettingsView.swift
- ScanView.swift
- SettingsStore.swift
- SonyCameraConnection.swift
- SonyLiveViewPanel.swift
- StockCalibrationProfile.swift
- WizardProgressView.swift
- WorkflowShellView.swift
- FakeTransport.swift
- Protocol.swift
- Scanlight.swift
- SerialPortTransport.swift
- Transport.swift
- main.swift
- AccessibilityIDCoverageTests.swift
- CalibrationWizardUITests.swift
- CalibrationWizardViewModelTests.swift
- OrchestratorClientTests.swift
- PositiveInversionRunnerTests.swift
- ScanCoordinatorTests.swift
- ScanlightAppUITests.swift
- ScanViewUITests.swift
- SettingsCalibrationUITests.swift
- ProtocolTests.swift
- ScanlightDriverTests.swift
- Package.swift
- skills-lock.json
- README.md
- capture-calibration.sh
- check_docs_consistency.py
- classify-arw.py
- compare-dcp.py
- cua-drive-swift-app.sh
- diagnose.py
- dry-run-checklist.sh
- inspect-calibration.py
- peer-review.py
- smoketest.sh
- test_check_docs_consistency.py
- test_classify_arw.py
- test_compare_dcp.py
- test_inspect_calibration.py
- test_peer_review.py
- test_swift_cli.py
- triplet-capture
- __init__.py
- conftest.py
- README.md
- test_orchestrator_to_composite_handoff.py
- test_triplet_to_composite.py
- __init__.py
- index.html
- README.md
- .gitignore
- HANDOFF.md
- LICENSE
- PROJECT.md
- pytest.ini
- README.md
- ScanLight.html
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cmake
설명 보기 ▼
cmake
네이티브 빌드 시스템을 위한 빌드 설정 파일을 생성하는, 크로스 플랫폼 빌드 자동화 도구.
더 많은 정보: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
cmake {{path/to/project_directory}}
프로젝트 디렉터리의 `CMakeLists.txt`를 사용해 현재 디렉터리에 빌드 설정을 생성:
cmake --build {{path/to/build_directory}}
지정한 디렉터리의 빌드 설정을 사용해 빌드 산출물을 생성:
cmake --install {{path/to/build_directory}} --strip
빌드 산출물을 `/usr/local/`에 설치하고 디버그 심볼을 제거:
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:
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 시작:
swift
설명 보기 ▼
swift
Swift 프로젝트를 생성, 실행 및 빌드.
더 많은 정보: <https://manned.org/swiftc>.
swift repl
REPL(대화형 셸) 시작:
swift {{file.swift}}
프로그램 실행:
swift package init
패키지 관리자로 새 프로젝트 시작:
