Skip to content

Commit 4e1e1dc

Browse files
committed
vault backup: 2025-10-08 20:41:32
1 parent a6b0bbf commit 4e1e1dc

File tree

3 files changed

+51
-11
lines changed

3 files changed

+51
-11
lines changed

.obsidian/plugins/recent-files-obsidian/data.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"recentFiles": [
3+
{
4+
"basename": "实验",
5+
"path": "docs/论文研读/超分插帧/超分插针融合/实验.md"
6+
},
37
{
48
"basename": "ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation",
59
"path": "docs/论文研读/超分插帧/超分插针融合/ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation.md"
@@ -8,10 +12,6 @@
812
"basename": "训练框架使用",
913
"path": "docs/其他内容/人工智能/实验/训练框架使用.md"
1014
},
11-
{
12-
"basename": "实验",
13-
"path": "docs/论文研读/超分插帧/超分插针融合/实验.md"
14-
},
1515
{
1616
"basename": "2025-10-07",
1717
"path": "2025-10-07.md"

.obsidian/workspace.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"state": {
1414
"type": "markdown",
1515
"state": {
16-
"file": "docs/论文研读/超分插帧/超分插针融合/ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation.md",
16+
"file": "docs/论文研读/超分插帧/超分插针融合/实验.md",
1717
"mode": "source",
1818
"source": false
1919
},
2020
"icon": "lucide-file",
21-
"title": "ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation"
21+
"title": "实验"
2222
}
2323
},
2424
{
@@ -27,12 +27,12 @@
2727
"state": {
2828
"type": "markdown",
2929
"state": {
30-
"file": "docs/论文研读/超分插帧/超分插针融合/实验.md",
30+
"file": "docs/论文研读/超分插帧/超分插针融合/ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation.md",
3131
"mode": "source",
3232
"source": false
3333
},
3434
"icon": "lucide-file",
35-
"title": "实验"
35+
"title": "ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation"
3636
}
3737
}
3838
]
@@ -107,7 +107,8 @@
107107
}
108108
],
109109
"direction": "horizontal",
110-
"width": 445.49999618530273
110+
"width": 200,
111+
"collapsed": true
111112
},
112113
"right": {
113114
"id": "d615b65a4ccf8a6a",
@@ -210,9 +211,9 @@
210211
},
211212
"active": "7fa86c2358eb623f",
212213
"lastOpenFiles": [
213-
"docs/其他内容/人工智能/实验/训练框架使用.md",
214-
"docs/论文研读/超分插帧/超分插针融合/实验.md",
215214
"docs/论文研读/超分插帧/超分插针融合/ExtraSS A Framework for Joint Spatial Super Sampling and Frame Extrapolation.md",
215+
"docs/论文研读/超分插帧/超分插针融合/实验.md",
216+
"docs/其他内容/人工智能/实验/训练框架使用.md",
216217
"docs/论文研读/超分插帧/超分插针融合",
217218
"2025-10-07.md",
218219
"docs/其他内容/游戏开发&图形学/计算机图形学/API编程/opengl/pyopengl.md",
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
- 基本思路:整体级联、Stage1(E0+共享解码)、Stage2(E1+共享解码)
2+
```
3+
I_{t-1} (HR 3x2H×2W)
4+
│ (运动对齐 / 外部warp)
5+
└─→ WarpHighColor_{t-1→t} (HR)
6+
│ S2D(scale=2) → 12ch
7+
i_t (LR 3) ─┐
8+
depth_t (1) ├──── concat → 16ch → Encoder E0 → Multi-scale feats → Shared Decoder → I_t_high (HR 3)
9+
10+
└──────────────────────────────────────────┐
11+
WarpLowColor_{t+1→t} (LR 3) | │ |
12+
I_t_high (HR 3) ── S2D → 12ch | │ |
13+
I_t_high bicubic → 3ch | │ |
14+
depth_t (1) | │ |
15+
concat → 19ch → Encoder E1 → feats → Shared Decoder → I_{t+1}_high (HR 3)
16+
```
17+
- E 0
18+
```
19+
[ i_t | depth_t | S2D(WarpHighColor_{t-1→t}) ] (B,16,H,W)
20+
21+
Stem: 3×3 Conv+PReLU → ResBlock → f1 (32 ch)
22+
23+
├─ DownBlock(stride2) → 64 ch → f2
24+
25+
├─ DownBlock(stride2) → 128 ch → f3
26+
27+
└─ DownBlock(stride2) → 256 ch → DepthGuidedAttention → f4
28+
29+
Decoder(共享):
30+
f4 → Up(×2, ConvT) → 128 ─ Add f3 → Refine(Conv+Res) → 128a
31+
128a → Up → 64 ─ Add f2 → Refine → 64a
32+
64a → Up → 32 ─ Add f1 → Refine → 32a
33+
32a ─ Concat[ + f1 ] → Conv → 46 → Conv → 12 → PixelShuffle(scale=2) → I_t_high (B,3,2H,2W)
34+
收集解码特征: [128a,64a,32a]
35+
```
36+
- E 1
37+
```
38+
39+
```

0 commit comments

Comments
 (0)