File size: 5,884 Bytes
6152b4e
0ed01b4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6152b4e
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
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>ShutterMuse Video Demo</title>
  <meta name="description" content="Video demo for ShutterMuse: Capture-Time Photography Guidance with MLLMs." />
  <style>
    :root {
      color-scheme: light dark;
      --bg: #0f172a;
      --panel: rgba(15, 23, 42, 0.72);
      --text: #e5e7eb;
      --muted: #cbd5e1;
      --link: #93c5fd;
      --accent: #a78bfa;
      --border: rgba(148, 163, 184, 0.3);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.38), transparent 34rem),
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.34), transparent 30rem),
        linear-gradient(135deg, #020617 0%, var(--bg) 48%, #111827 100%);
    }
    main {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 56px 0 44px;
    }
    .hero {
      display: grid;
      gap: 24px;
      margin-bottom: 28px;
      text-align: center;
    }
    .eyebrow {
      justify-self: center;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 14px;
      color: var(--muted);
      background: rgba(15, 23, 42, 0.55);
      backdrop-filter: blur(12px);
      font-size: 14px;
    }
    h1 {
      margin: 0;
      font-size: clamp(38px, 7vw, 76px);
      line-height: 0.96;
      letter-spacing: -0.055em;
font-weight: 820;
    }
    .subtitle {
      margin: 0 auto;
      max-width: 820px;
      color: var(--muted);
      font-size: clamp(17px, 2.2vw, 22px);
      line-height: 1.58;
    }
    .video-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--panel);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(16px);
    }
    video {
      display: block;
      width: 100%;
      max-height: 78vh;
      background: #000;
    }
    .links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      padding: 24px;
      border-top: 1px solid var(--border);
    }
    .links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 10px 15px;
      color: var(--text);
      text-decoration: none;
      background: rgba(255, 255, 255, 0.06);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .links a:hover {
      transform: translateY(-1px);
      border-color: rgba(147, 197, 253, 0.8);
      background: rgba(147, 197, 253, 0.12);
    }
    .tasks {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }
    .task {
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 20px;
      background: rgba(15, 23, 42, 0.58);
backdrop-filter: blur(12px);
    }
    .task h2 {
      margin: 0 0 8px;
      font-size: 18px;
    }
    .task p {
      margin: 0;
      color: var(--muted);
      line-height: 1.56;
    }
    footer {
      margin-top: 28px;
      color: #94a3b8;
      text-align: center;
      font-size: 14px;
    }
    footer a { color: var(--link); }
    @media (max-width: 760px) {
      main { padding-top: 34px; }
      .tasks { grid-template-columns: 1fr; }
      .links { justify-content: flex-start; }
    }
  </style>
</head>
<body>
  <main>
    <section class="hero" aria-labelledby="title">
      <div class="eyebrow">πŸ“· Capture-Time Photography Guidance with MLLMs</div>
      <h1 id="title">ShutterMuse Video Demo</h1>
      <p class="subtitle">
        ShutterMuse provides photographer-side composition recommendation and subject-side pose recommendation for interactive capture-time photography guidance.
      </p>
    </section>

    <section class="video-card" aria-label="Demo video">
      <video controls preload="metadata" poster="thumbnail.jpg">
        <source src="Demo.mp4" type="video/mp4" />
        Your browser does not support the HTML video tag. You can download the video from the Space files.
      </video>
      <nav class="links" aria-label="Project links">
        <a href="https://huggingface.co/papers/2606.25763" target="_blank" rel="noreferrer">πŸ“„ HF Paper</a>
        <a href="https://arxiv.org/abs/2606.25763" target="_blank" rel="noreferrer">🧾 arXiv</a>
        <a href="https://lijayuTnT.github.io/ShutterMuse/" target="_blank" rel="noreferrer">🌐 Project Page</a>
        <a href="https://github.com/lijayuTnT/ShutterMuse" target="_blank" rel="noreferrer">πŸ’» GitHub</a>
        <a href="https://huggingface.co/ShutterMuse/ShutterMuse" target="_blank" rel="noreferrer">πŸ€— Model</a>
        <a href="https://huggingface.co/datasets/ShutterMuse/CaptureGuide-Bench" target="_blank" rel="noreferrer">πŸ—‚ Benchmark</a>
      </nav>
    </section>

    <section class="tasks" aria-label="Supported benchmark tasks">
      <article class="task">
        <h2>Photographer-side</h2>
        <p>Composition recommendation: keep, refine, or reject the current framing, with composition boxes when refinement is needed.</p>
      </article>
      <article class="task">
        <h2>Subject-side</h2>
        <p>Pose recommendation: generate scene-conditioned portrait poses with COCO-17 keypoints and visibility states.</p>
      </article>
    </section>

    <footer>
      If you use ShutterMuse or CaptureGuide-Bench, please cite
      <a href="https://arxiv.org/abs/2606.25763" target="_blank" rel="noreferrer">arXiv:2606.25763</a>.
    </footer>
  </main>
</body>
</html>