Wire up ONNX RetinaFace detector and MobileFaceNet embeddings in the CLI and auth pipeline. Add IR camera detection for Windows Hello-style "Integrated I" cameras and greyscale-only format heuristic. Add histogram normalization for underexposed IR frames from low-power emitters. - Add `onnx` feature flag to CLI crate forwarding to daemon - Wire ONNX detector into `detect` command with fallback to simple detector - Fix IR camera detection for Chicony "Integrated I" naming pattern - Add `normalize_if_dark()` for underexposed IR frames in auth pipeline - Load user config from ~/.config/linux-hello/ as fallback - Update systemd service for IR emitter integration and camera access - Add system installation script and ONNX runtime installer - Update .gitignore for local dev artifacts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
509 B
Plaintext
42 lines
509 B
Plaintext
# Build artifacts
|
|
/target/
|
|
*.o
|
|
*.so
|
|
*.a
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Debug output
|
|
*.raw
|
|
debug_frames/
|
|
|
|
# Local configuration overrides
|
|
config.local.toml
|
|
|
|
# Test data
|
|
test_images/
|
|
test_output/
|
|
test_frames/
|
|
|
|
# ONNX model files (download separately - see models/README.md)
|
|
models/*.onnx
|
|
|
|
# Internal development documentation (not for repository)
|
|
status.md
|
|
development_path.md
|
|
|
|
# Local cargo config (user-specific paths)
|
|
.cargo/
|
|
|
|
# Planning/review artifacts
|
|
.planning/
|