Skip to content

Commit 6118bb7

Browse files
authored
Merge pull request #27 from 1985312383/main
Add x-ray-preprocessing && Fix Appendix Chapter && Update readme
2 parents 74a626c + 8de4ff8 commit 6118bb7

20 files changed

Lines changed: 251 additions & 205 deletions

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,23 @@
6161
- **1.4** 医学影像中的伪影 — 识别和理解成像伪影
6262

6363
#### 第2章 模态特定的预处理
64-
- **2.1** CT:从探测器信号到校正投影**新增**
64+
- **2.1** CT:从探测器信号到校正投影
6565
- 从光子采集到校准投影数据的完整工作流程
66+
- **2.2** MRI k-空间预处理 ✨ **新增**
67+
- K空间数据生成、欠采样策略与滤波技术
68+
69+
#### 第3章 图像重建算法
70+
- **3.1** 解析重建:滤波反投影(FBP)
71+
- CT重建的数学原理与滤波器选择
72+
- **3.2** 迭代重建:代数与压缩感知方法 ✨ **新增**
73+
- POCS、SART等迭代算法原理与实现
74+
75+
#### 第4章 多模态重建实践
76+
- **4.1** 数据集介绍与实验准备
77+
- **4.2** 案例一:CT重建全流程 ✨ **新增**
78+
- 从原始投影数据到重建图像的完整流程
79+
- **4.3** 案例二:MRI K空间成像与重建实验 ✨ **新增**
80+
- 欠采样策略、重建算法与质量评估
6681

6782
#### 第5章 基于深度学习的后处理
6883
- **5.1** 预处理 — 针对 AI 模型的模态特定数据准备
@@ -71,10 +86,9 @@
7186
- **5.4** 图像增强与恢复 — 去噪和超分辨率技术
7287

7388
### 🚀 即将推出
74-
- **2.2** MRI k-空间预处理
7589
- **2.3** X-ray 直接成像校正
76-
- **第3章** 按模态分类的图像重建算法
77-
- **第4章** 多模态重建实践
90+
- **4.4** 更多重建案例(PET、超声等)
91+
- **第6章** 高级主题与前沿技术
7892

7993
## 🤝 如何贡献
8094

README_en.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,23 @@ This tutorial aims to help beginners systematically learn medical imaging proces
6363
- **1.4** Artifacts in Medical Imaging — Identifying and understanding imaging artifacts
6464

6565
#### Chapter 2: Modality-Specific Preprocessing
66-
- **2.1** CT: From Detector Signal to Corrected Projection**NEW**
66+
- **2.1** CT: From Detector Signal to Corrected Projection
6767
- Complete workflow from photon acquisition to calibrated projection data
68+
- **2.2** MRI k-space Preprocessing ✨ **NEW**
69+
- K-space data generation, undersampling strategies, and filtering techniques
70+
71+
#### Chapter 3: Image Reconstruction Algorithms
72+
- **3.1** Analytic Reconstruction: Filtered Back Projection (FBP)
73+
- Mathematical principles of CT reconstruction and filter selection
74+
- **3.2** Iterative Reconstruction: Algebraic and Compressed Sensing Methods ✨ **NEW**
75+
- POCS, SART and other iterative algorithms: principles and implementation
76+
77+
#### Chapter 4: Multi-Modality Reconstruction Practice
78+
- **4.1** Dataset Introduction and Experiment Preparation
79+
- **4.2** Case Study 1: Complete CT Reconstruction Workflow ✨ **NEW**
80+
- Full pipeline from raw projection data to reconstructed images
81+
- **4.3** Case Study 2: MRI K-space Imaging and Reconstruction Experiments ✨ **NEW**
82+
- Undersampling strategies, reconstruction algorithms, and quality assessment
6883

6984
#### Chapter 5: Deep Learning Post-processing
7085
- **5.1** Preprocessing — Modality-specific data preparation for AI models
@@ -73,10 +88,9 @@ This tutorial aims to help beginners systematically learn medical imaging proces
7388
- **5.4** Image Enhancement and Recovery — Denoising and super-resolution techniques
7489

7590
### 🚀 Coming Soon
76-
- **2.2** MRI k-space Preprocessing
7791
- **2.3** X-ray Direct Imaging Correction
78-
- **Chapter 3** Image Reconstruction Algorithms by Modality
79-
- **Chapter 4** Multi-Modality Reconstruction Practice
92+
- **4.4** More Reconstruction Cases (PET, Ultrasound, etc.)
93+
- **Chapter 6** Advanced Topics and Cutting-Edge Techniques
8094

8195
## 🤝 Contributing
8296

docs/.vitepress/config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export default defineConfig({
6666
items: [
6767
{ text: '2.1 CT/X-ray:正弦图与探测器校正', link: '/guide/ch02/01-ct-preprocessing' },
6868
{ text: '2.2 MRI:K空间去卷绕与填充', link: '/guide/ch02/02-mri-preprocessing' },
69-
{ text: '2.3 PET/US:衰减校正与降噪', link: '/guide/ch02/03-pet-us-preprocessing' }
69+
{ text: '2.3 PET/US:衰减校正与降噪', link: '/guide/ch02/03-pet-us-preprocessing' },
70+
{ text: '2.4 X射线:直接成像的校正', link: '/guide/ch02/04-xray-preprocessing' }
7071
]
7172
},
7273
{
@@ -176,7 +177,8 @@ export default defineConfig({
176177
items: [
177178
{ text: '2.1 CT/X-ray: Sinogram & Detector Correction', link: '/en/guide/ch02/01-ct-preprocessing' },
178179
{ text: '2.2 MRI: k-Space Unwrapping & Padding', link: '/en/guide/ch02/02-mri-preprocessing' },
179-
{ text: '2.3 PET/US: Attenuation Correction & Denoising', link: '/en/guide/ch02/03-pet-us-preprocessing' }
180+
{ text: '2.3 PET/US: Attenuation Correction & Denoising', link: '/en/guide/ch02/03-pet-us-preprocessing' },
181+
{ text: '2.4 X-ray: Direct Imaging Correction', link: '/en/guide/ch02/04-xray-preprocessing' }
180182
]
181183
},
182184
{

docs/en/guide/appendix/A-formula.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# A Key Formulas
2-
3-
> title: A Key Formulas
4-
>
5-
> description: Summarizes the most common, important, and cross-modality universal formulas in medical imaging. Enables readers to quickly consult and understand mathematical derivations when reading the main tutorial. Suitable for beginners to quickly establish a formula framework.
1+
---
2+
title: Appendix A Key Formulas
3+
description: Summarizes the most common, important, and cross-modality universal formulas in medical imaging. Enables readers to quickly consult and understand mathematical derivations when reading the main tutorial. Suitable for beginners to quickly establish a formula framework.
4+
---
65

7-
# A Key Formulas
6+
# Appendix A: Key Formulas
87

98
# 1. Introduction
109

docs/en/guide/appendix/B-tool-Installation.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# B Tool Installation
2-
3-
> title: B Tool Installation
4-
>
5-
> description: Introduces installation methods for common tools.
1+
---
2+
title: Appendix B Tool Installation
3+
description: Introduces installation methods for common tools.
4+
---
65

7-
# B Tool Installation
6+
# Appendix B: Tool Installation
87

98
# 1. Introduction
109

docs/en/guide/appendix/C-dataset/C-1-CT.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# C-1 CT Type Datasets
1+
---
2+
title: Appendix C-1 CT Type Datasets
3+
description: Introduces CT type datasets
4+
---
25

3-
> title: C-1 CT Type Datasets
4-
> description: Introduces CT type datasets
6+
# Appendix C-1: CT Type Datasets
57

68
# 1. LIDC-IDRI (Lung CT Nodule Database)
79

docs/en/guide/appendix/C-dataset/C-2-MRI.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# C-2 MRI Type Datasets
1+
---
2+
title: Appendix C-2 MRI Type Datasets
3+
description: Introduces MRI type datasets
4+
---
25

3-
> title: C-2 MRI Type Datasets
4-
> description: Introduces MRI type datasets
6+
# Appendix C-2: MRI Type Datasets
57

68
# 1. BraTS (Brain Tumor MRI Segmentation Dataset)
79

docs/en/guide/appendix/C-dataset/C-3-X-ray.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# C-3 X-ray Type Datasets
1+
---
2+
title: Appendix C-3 X-ray Type Datasets
3+
description: Introduces X-ray type datasets
4+
---
25

3-
> title: C-3 X-ray Type Datasets
4-
> description: Introduces X-ray type datasets
6+
# Appendix C-3: X-ray Type Datasets
57

68
# 3. CheXpert (Large-scale Chest X-ray Lesion Detection Dataset)
79

docs/en/guide/appendix/C-dataset/C-4-Multimodal.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# C-4 Multimodal Datasets
1+
---
2+
title: Appendix C-4 Multimodal Datasets
3+
description: Introduces multimodal datasets
4+
---
25

3-
> title: C-4 Multimodal Datasets
4-
> description: Introduces multimodal datasets
6+
# Appendix C-4: Multimodal Datasets
57

68
# 1. ADNI (Alzheimer's Disease Neuroimaging)
79

docs/en/guide/appendix/D-glossary.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# D Glossary
1+
---
2+
title: Appendix D Glossary
3+
description: Introduces common terminology
4+
---
25

3-
> title: D Glossary
4-
> description: Introduces common terminology
6+
# Appendix D: Glossary
57

68
|English Term|Explanation|
79
| --------------------------------| ----------------------------------------------------------------------|

0 commit comments

Comments
 (0)