File size: 5,939 Bytes
38452f0 eee8df9 38452f0 eee8df9 8806ce4 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f 38452f0 3074cec 38452f0 ce8e49f 38452f0 ce8e49f 20acace ce8e49f 38452f0 ce8e49f 38452f0 ce8e49f d42c18a ce8e49f 38452f0 d42c18a 38452f0 d42c18a 38452f0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | ---
license: mit
library_name: pytorch
tags:
- image-restoration
- multi-frame
- deformable-convolution
- temporal-fusion
- feature-level-alignment
- super-resolution
- astronomy
- satellite-images-refactoring
- photography
- denoise
- deblur
- novel-architecture
- from-scratch
- efficient
- research
language:
- en
pipeline_tag: image-to-image
---
# MFIR - Multi-Frame Image Restoration
A PyTorch model for multi-frame image restoration through temporal fusion and feature-level alignment. MFIR aligns and fuses features from multiple degraded frames to produce a high-quality restored image.
## Model Description
MFIR takes 2-16 degraded frames of the same scene and combines them into a single high-quality output. Unlike single-image restoration methods that struggle with heavily degraded inputs, MFIR leverages complementary information across multiple frames - each frame captures slightly different details, and the model learns to extract and merge the best parts from each.
### Architecture
```
Input Frames (B, N, 3, H, W)
β
βΌ
βββββββββββββββββββββββ
β Shared Encoder β ResNet-style feature extraction
βββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Deformable β Align frames using learned offsets
β Alignment β (3-layer cascade)
βββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Temporal Attention β Multi-head attention fusion
β Fusion β (4 heads)
βββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββ
β Decoder β PixelShuffle upsampling
βββββββββββββββββββββββ
β
βΌ
Output (B, 3, H, W)
```
### Key Components
| Component | Description |
|-----------|-------------|
| **Shared Encoder** | Multi-scale feature extraction with residual blocks. 4x spatial downsampling. |
| **Deformable Alignment** | Cascaded deformable convolutions (3 layers) to align frames to reference. More robust than optical flow for degraded inputs. |
| **Temporal Attention Fusion** | Multi-head attention (4 heads) where reference frame is query, all frames are key/value. Learns per-pixel frame contributions. |
| **Decoder** | Progressive upsampling with PixelShuffle (2 stages, 4x total). |
## Usage
### Installation
```bash
pip install torch torchvision huggingface_hub
```
### Inference
```python
import torch
from huggingface_hub import hf_hub_download
# Download checkpoint
checkpoint_path = hf_hub_download(
repo_id="marduk-ra/MFIR",
filename="temporal_fusion_model.pth"
)
# Load model
ckpt = torch.load(checkpoint_path, map_location="cuda", weights_only=False)
# Model architecture code available at:
# https://github.com/marduk-ra/MFIR
from model import FeatureFusionModel, FeatureFusionConfig
config = FeatureFusionConfig.from_dict(ckpt["config"])
model = FeatureFusionModel(config)
model.load_state_dict(ckpt["state_dict"])
model.eval()
# Inference
# frames: (batch, num_frames, 3, height, width) tensor in [0, 1]
with torch.no_grad():
result = model(frames, ref_idx=0)
output = result["output"] # (batch, 3, height, width)
```
### Web Demo
Try the model directly in your browser:
π **[Hugging Face Space Demo](https://huggingface.co/spaces/marduk-ra/MFIR)**
## Model Details
| Parameter | Value |
|-----------|-------|
| Input Channels | 3 (RGB) |
| Output Channels | 3 (RGB) |
| Max Frames | 16 |
| Min Frames | 2 |
| Encoder Channels | [64, 128, 256] |
| Deformable Groups | 8 |
| Deformable Layers | 3 |
| Attention Heads | 4 |
| Fusion Type | Attention |
| Parameters | ~10M |
| Checkpoint Size | 42 MB |
## Example
**Input Frames (5 degraded images):**
<p>
<img src="photos/inputs/input1.png" width="150" />
<img src="photos/inputs/input2.png" width="150" />
<img src="photos/inputs/input3.png" width="150" />
<img src="photos/inputs/input4.png" width="150" />
<img src="photos/inputs/input5.png" width="150" />
</p>
**Output (restored):**
<img src="photos/output.png" width="400" />
*5 degraded input frames are fused into a single high-quality output.*
The model works best when:
- Frames have slight variations (different noise patterns, blur, etc.)
- Frames are roughly aligned (same scene)
- Input resolution matches training resolution
## Training
The model was trained on a custom dataset with the following specifications:
**Dataset:**
- 16,000 high-resolution source images
- Each image was used to generate 8 degraded input frames
- Multi-scale training: 128, 256, 512, and 1024 pixel resolutions
**Degradation Pipeline:**
- Random spatial shifts (simulating camera shake)
- Motion blur with varying kernel sizes and directions
- Gaussian and Poisson noise with random intensity
**Training Configuration:**
- Total epochs: 150 (progressive training)
- Optimizer: AdamW
- Loss: L1 + Perceptual (VGG) + SSIM + Color Correction
## Limitations
- Requires multiple frames of the same scene
- Performance depends on frame quality variation
- GPU recommended for real-time processing
## Citation
```bibtex
@software{karaarslan2026mfir,
author = {Karaarslan, Veli},
title = {MFIR: Multi-Frame Image Restoration},
year = {2026},
url = {https://github.com/allcodernet/MFIR}
}
```
## License
MIT License - see [LICENSE](https://github.com/allcodernet/MFIR/blob/main/LICENSE)
## Author
**Veli Karaarslan** - 2026
## Links
- [GitHub Repository](https://github.com/allcodernet/MFIR)
- [Hugging Face Space](https://huggingface.co/spaces/marduk-ra/MFIR)
|