docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
---
|
||||
id: wiki-2026-0508-prenatal-neurology
|
||||
title: Prenatal Neurology
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [Fetal Neurology, Prenatal Neuroscience]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.85
|
||||
verification_status: applied
|
||||
tags: [neurology, fetal-medicine, neurodevelopment, medical-imaging]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: Python
|
||||
framework: MONAI / nnU-Net / 3D Slicer
|
||||
---
|
||||
|
||||
# Prenatal Neurology
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 fetal nervous system 의 development, imaging, anomaly detection — neural tube 부터 birth 까지"**. 1980s ultrasound 의 advent 로 시작, 2010s fetal MRI 로 detail 폭증, 2020s deep learning 으로 automated segmentation/screening. 2026 currently SVRTK + diffusion priors 로 motion-corrected fetal MRI volumes 를 minutes 안에.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 developmental milestones
|
||||
- **Week 3-4**: neural plate → neural tube closure. Failure → spina bifida, anencephaly.
|
||||
- **Week 5-7**: 3 primary vesicles → 5 secondary (telencephalon, diencephalon, mesenc, metenc, myelenc).
|
||||
- **Week 8-16**: neuronal proliferation in ventricular zone.
|
||||
- **Week 12-22**: neuronal migration along radial glia. Failure → lissencephaly, heterotopia.
|
||||
- **Week 22-40**: gyrification, cortical organization, myelination begins.
|
||||
|
||||
### 매 imaging modalities
|
||||
- **Ultrasound (US)**: routine 18-22 wk anatomy scan; transvaginal early.
|
||||
- **Fetal MRI**: T2-HASTE / SSFSE; problem-solving when US ambiguous.
|
||||
- **Doppler**: middle cerebral artery flow (anemia, hypoxia).
|
||||
- **Fetal MEG / EEG**: research only.
|
||||
|
||||
### 매 common anomalies
|
||||
1. **Neural tube defects** (NTDs): spina bifida, anencephaly. Folate-preventable.
|
||||
2. **Ventriculomegaly**: atrial width >10mm.
|
||||
3. **Corpus callosum agenesis**: 1:4000.
|
||||
4. **Posterior fossa**: Dandy-Walker, Blake's pouch cyst.
|
||||
5. **Cortical malformations**: lissencephaly, polymicrogyria.
|
||||
6. **TORCH infections**: CMV, Zika → microcephaly, calcifications.
|
||||
|
||||
### 매 AI in fetal imaging (2024-2026)
|
||||
- **SVRTK / NiftyMIC**: slice-to-volume reconstruction from motion-corrupted MRI.
|
||||
- **nnU-Net fetal**: automatic brain extraction + tissue segmentation.
|
||||
- **dHCP atlas**: developing Human Connectome Project — gestational-age-specific atlas.
|
||||
- **Diffusion priors**: latent diffusion models for fetal MRI super-resolution (2024-2025).
|
||||
- **Automated biometry**: BPD, HC, AC, FL from US in real time (e.g., Caption Health-style).
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Fetal brain extraction (nnU-Net)
|
||||
```python
|
||||
# Train on FeTA Challenge dataset (gestational ages 20-35 wk)
|
||||
# nnU-Net handles preprocessing, augmentation, ensemble
|
||||
import subprocess
|
||||
subprocess.run([
|
||||
"nnUNetv2_train", "Dataset080_FetalBrain", "3d_fullres", "0",
|
||||
"--npz",
|
||||
])
|
||||
# Inference
|
||||
subprocess.run([
|
||||
"nnUNetv2_predict",
|
||||
"-i", "input_dir", "-o", "output_dir",
|
||||
"-d", "080", "-c", "3d_fullres", "-f", "0",
|
||||
])
|
||||
```
|
||||
|
||||
### Slice-to-volume reconstruction (SVRTK)
|
||||
```bash
|
||||
# Motion-corrupted T2 stacks → isotropic 3D volume
|
||||
mirtk reconstruct recon.nii.gz \
|
||||
4 stack_axi.nii.gz stack_cor.nii.gz stack_sag.nii.gz stack_obl.nii.gz \
|
||||
-mask brain_mask.nii.gz \
|
||||
-resolution 0.5 \
|
||||
-iterations 3 \
|
||||
-thickness 3.0 3.0 3.0 3.0
|
||||
```
|
||||
|
||||
### Tissue segmentation w/ MONAI
|
||||
```python
|
||||
import torch
|
||||
from monai.networks.nets import SwinUNETR
|
||||
from monai.transforms import Compose, LoadImaged, NormalizeIntensityd, EnsureChannelFirstd
|
||||
|
||||
model = SwinUNETR(img_size=(96, 96, 96), in_channels=1, out_channels=8,
|
||||
feature_size=48, use_checkpoint=True)
|
||||
model.load_state_dict(torch.load("feta_swinunetr.pt"))
|
||||
# Outputs: CSF, GM, WM, ventricles, cerebellum, brainstem, deep GM, hippocampus
|
||||
```
|
||||
|
||||
### Gestational-age-specific atlas registration
|
||||
```python
|
||||
# dHCP: 36 atlases from 28-44 weeks PMA
|
||||
import ants
|
||||
fixed = ants.image_read(f"dhcp_atlas/week_{ga_weeks}.nii.gz")
|
||||
moving = ants.image_read("fetal_brain_recon.nii.gz")
|
||||
reg = ants.registration(fixed, moving, type_of_transform="SyN")
|
||||
warped = reg["warpedmovout"]
|
||||
```
|
||||
|
||||
### Automated US biometry (real-time)
|
||||
```python
|
||||
# YOLOv8 finds standard plane → keypoint regression for BPD/HC/AC/FL
|
||||
from ultralytics import YOLO
|
||||
plane_model = YOLO("us_plane_classifier.pt")
|
||||
biometry = YOLO("us_keypoints.pt")
|
||||
res = plane_model(frame)
|
||||
if res[0].names[res[0].probs.top1] == "axial_thalami":
|
||||
pts = biometry(frame)[0].keypoints
|
||||
bpd_mm = euclidean(pts[0], pts[1]) * pixel_spacing
|
||||
```
|
||||
|
||||
### Cortical folding metric (gyrification index)
|
||||
```python
|
||||
# GI = total surface area / convex hull area (per hemisphere)
|
||||
import nibabel as nib, numpy as np
|
||||
from skimage.measure import marching_cubes, mesh_surface_area
|
||||
seg = nib.load("cortex.nii.gz").get_fdata() > 0
|
||||
verts, faces, _, _ = marching_cubes(seg, level=0.5)
|
||||
surf = mesh_surface_area(verts, faces)
|
||||
# Convex hull surface
|
||||
from scipy.spatial import ConvexHull
|
||||
hull = ConvexHull(verts)
|
||||
gi = surf / hull.area
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Routine screening 18-22 wk | Ultrasound (anatomy scan) |
|
||||
| Suspected CNS anomaly on US | Fetal MRI (32-34 wk optimal) |
|
||||
| Motion-corrupted MRI | SVRTK reconstruction |
|
||||
| Quantitative volumetry | dHCP atlas + nnU-Net |
|
||||
| Suspected NTD | High-resolution US + AFP + acetylcholinesterase |
|
||||
|
||||
**기본값**: US first; MRI for problem-solving; AI segmentation for research/quantitative endpoints.
|
||||
|
||||
## 🔗 Graph
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: fetal imaging analysis, neurodevelopmental research, congenital anomaly screening pipelines.
|
||||
**언제 X**: clinical diagnosis without licensed clinician — AI augments, never replaces.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Adult MRI tools on fetal data**: gestational-age-specific contrast / atlas required.
|
||||
- **Ignoring motion artifact**: fetal motion → reconstruct first.
|
||||
- **No GA stratification**: 24wk vs 36wk brain are different organs.
|
||||
- **Single-modality conclusion**: combine US + MRI + genetics.
|
||||
- **Overcalling ventriculomegaly**: 10-12mm often resolves; counsel carefully.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (FeTA Challenge MICCAI, dHCP, ISUOG guidelines, AIUM practice parameters).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — fetal neurodevelopment + AI imaging stack |
|
||||
Reference in New Issue
Block a user