[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,69 +2,147 @@
|
||||
id: wiki-2026-0508-lighting-composition
|
||||
title: "Lighting & Composition"
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: []
|
||||
aliases: [Cinematography, Visual Composition, Lighting Design]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [photography, cinematography, generative-AI, prompt-engineering]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-08
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: prompt
|
||||
framework: FLUX-Sora-Veo
|
||||
---
|
||||
|
||||
**Exploring Composition Techniques**
|
||||
# Lighting & Composition
|
||||
|
||||
I am now delving into diverse compositional techniques like bird's eye and worm's eye views, low and high angles, and Dutch angles, along with over-the-shoulder perspectives. I'm also examining how lens choices (85mm, 50mm, 35mm, macro, tilt-shift, fisheye) influence the final image. I'm noting the impact of shallow depth of field, emphasizing visual focus, along with elements like symmetry, negative space, the rule of thirds, and centered compositions. I am considering these in the Korean report.
|
||||
## 매 한 줄
|
||||
> **"매 image / video 의 emotional weight 의 90%는 lighting + composition"**. 매 subject 무엇이든, 매 light direction / quality, 매 frame organization 가 매 narrative 를 carry. 매 2026 의 generative AI (FLUX 1.1, Sora 2, Veo 3) 도 매 same vocabulary 를 prompt 로 받아 매 cinematographic control 가능.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 lighting 의 axes
|
||||
- **Direction**: front / side / back / top / bottom (각 emotional valence 다름).
|
||||
- **Quality**: hard (sharp shadows) vs soft (diffused).
|
||||
- **Color temperature**: warm (3000K) vs cool (6500K).
|
||||
- **Ratio**: key:fill ratio (1:1 flat, 4:1 dramatic).
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
### Related Concepts (Auto-Linked)
|
||||
* [[Shift]]
|
||||
* [[_report]]
|
||||
### 매 composition 의 axes
|
||||
- **Rule of thirds**: 매 subject 매 third lines 의 intersection.
|
||||
- **Leading lines**: 매 viewer's eye 의 directing.
|
||||
- **Negative space**: 매 emptiness 가 carry meaning.
|
||||
- **Depth layers**: foreground / mid / background.
|
||||
- **Aspect ratio**: 16:9 (cinematic), 9:16 (mobile), 1:1 (square), 2.39:1 (anamorphic).
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
### 매 응용
|
||||
1. **Photography**: portrait / product / landscape lighting setups.
|
||||
2. **Cinematography**: 매 scene mood 의 establishing.
|
||||
3. **Generative AI prompts**: 매 FLUX/Sora/Veo 매 cinematographic prompt vocabulary 인식.
|
||||
4. **UI design**: 매 hero image direction selection.
|
||||
|
||||
> *(TODO: 한 문장으로 핵심 통찰을 작성. "X는 Y 조건에서 Z 효과를 낸다" 구조 권장.)*
|
||||
## 💻 패턴
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
### Three-point lighting prompt
|
||||
```
|
||||
A portrait of a software engineer, three-point lighting:
|
||||
key light from camera-left at 45 degrees (soft, 5500K),
|
||||
fill light from camera-right at 1:2 ratio,
|
||||
backlight rim from upper-right (warm 3200K),
|
||||
shallow depth of field, 85mm lens equivalent,
|
||||
shot on Arri Alexa 35.
|
||||
```
|
||||
|
||||
**추출된 패턴:**
|
||||
> *(TODO)*
|
||||
### Rembrandt lighting (FLUX 1.1 prompt)
|
||||
```python
|
||||
flux_prompt = """
|
||||
Rembrandt lighting on subject's face:
|
||||
small triangle of light on shadow-side cheek,
|
||||
key light camera-left high at 45°,
|
||||
deep shadow on right side,
|
||||
chiaroscuro mood, oil painting aesthetic,
|
||||
photorealistic, 8K detail.
|
||||
"""
|
||||
```
|
||||
|
||||
**세부 내용:**
|
||||
- *(TODO)*
|
||||
### Golden hour video (Sora 2)
|
||||
```python
|
||||
sora_prompt = {
|
||||
"shot": "tracking shot through wheat field",
|
||||
"lighting": "golden hour, sun low at 15° angle camera-back-left, "
|
||||
"warm 2800K, long shadows, lens flare",
|
||||
"composition": "rule of thirds, horizon on lower third, "
|
||||
"leading lines from wheat rows toward subject",
|
||||
"camera": "Steadicam, 24fps, 35mm anamorphic, T2.0",
|
||||
"duration_s": 8,
|
||||
}
|
||||
```
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
### Composition checker (CV-based QA)
|
||||
```python
|
||||
import cv2
|
||||
import numpy as np
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
def rule_of_thirds_score(img: np.ndarray) -> float:
|
||||
"""매 saliency map peak 매 third-line proximity."""
|
||||
h, w = img.shape[:2]
|
||||
saliency = cv2.saliency.StaticSaliencyFineGrained_create()
|
||||
_, sal = saliency.computeSaliency(img)
|
||||
peak_y, peak_x = np.unravel_index(sal.argmax(), sal.shape)
|
||||
third_lines_x = [w/3, 2*w/3]
|
||||
third_lines_y = [h/3, 2*h/3]
|
||||
dx = min(abs(peak_x - tx) for tx in third_lines_x) / w
|
||||
dy = min(abs(peak_y - ty) for ty in third_lines_y) / h
|
||||
return 1.0 - min(dx, dy) * 2 # higher = better composition
|
||||
```
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
### Color temp grading (Veo 3 prompt augmentation)
|
||||
```python
|
||||
def grade_prompt(base: str, mood: str) -> str:
|
||||
grades = {
|
||||
"warm_nostalgic": "teal-orange grade, warm midtones (3200K), cool shadows",
|
||||
"cold_clinical": "desaturated blues, 6500K key, high-key flat lighting",
|
||||
"noir": "high-contrast B&W, low-key, single hard source, 4:1 ratio",
|
||||
}
|
||||
return f"{base} | grade: {grades[mood]}"
|
||||
```
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
## 매 결정 기준
|
||||
| Mood | Lighting | Composition |
|
||||
|---|---|---|
|
||||
| Heroic | Backlight rim + low-key fill | Low angle, centered |
|
||||
| Intimate | Soft key, high ratio | Close-up, off-center |
|
||||
| Tense | Hard side light, deep shadow | Dutch tilt, asymmetric |
|
||||
| Whimsical | Bright fill, warm tones | Wide, symmetrical |
|
||||
| Documentary | Available light | Eye-level, rule of thirds |
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
**기본값**: 매 three-point + rule of thirds — 매 safe baseline.
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
## 🔗 Graph
|
||||
- 부모: [[Visual-Design]] · [[Cinematography]]
|
||||
- 변형: [[Rembrandt-Lighting]] · [[Chiaroscuro]] · [[Rule-of-Thirds]]
|
||||
- 응용: [[Generative-Image-Prompting]] · [[Video-Production]]
|
||||
- Adjacent: [[Color-Theory]] · [[Camera-Movement]]
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 image/video prompt engineering — 매 cinematographic vocabulary 매 quality lift 큼.
|
||||
**언제 X**: 매 abstract / non-representational generation — vocabulary 의 X.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
## ❌ 안티패턴
|
||||
- **Flat front lighting**: 매 amateur look — depth loss.
|
||||
- **Centered everything**: 매 visual boring.
|
||||
- **Mixed color temps unintentional**: 매 amateur giveaway.
|
||||
- **Over-prompting**: 매 50+ tokens 의 lighting → 매 model confusion.
|
||||
|
||||
- **과거 데이터와의 충돌:** 없음
|
||||
- **정책 변화:** 없음
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Brown *Cinematography*; Block *Visual Story*; FLUX 1.1 prompt guide; Sora 2 system card 2025).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — lighting/composition vocabulary + 2026 generative AI prompts |
|
||||
|
||||
Reference in New Issue
Block a user