Views
No views yet
| Dataset | PSNR | SSIM |
|---|---|---|
| LOL-v1 | 22.70 dB | 0.8389 |
| LOL-v2-Real | 21.72 dB | 0.8199 |






1git clone https://github.com/yourusername/LumiTrace
2cd LumiTrace
3pip install -r requirements.txt1from lumitrace.inference import VideoEnhancer
2import yaml
3
4# Load config
5with open('configs/lol_v1_temporal.yml', 'r') as f:
6 config = yaml.safe_load(f)
7
8# Initialize enhancer
9enhancer = VideoEnhancer(
10 model_path='checkpoints/lol_v1/stage2/best.pth',
11 config=config
12)
13
14# Process video
15enhancer.enhance_video(
16 input_path='input.mp4',
17 output_path='enhanced.mp4'
18)./scripts/enhance_video.sh input.mp4 output.mp41@software{lumitrace2024,
2 title={LumiTrace: Temporal Low-Light Video Enhancement},
3 author={Your Name},
4 year={2024},
5 url={https://github.com/yourusername/LumiTrace}
6}