Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- 3d
|
| 7 |
+
- medical
|
| 8 |
+
- image-synthesis
|
| 9 |
+
- image-generation
|
| 10 |
+
- wavelet-transform
|
| 11 |
+
arxiv: 2402.19043
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# WDM: 3D Wavelet Diffusion Models for High-Resolution Medical Image Synthesis
|
| 15 |
+
This is the officical model repository of the paper "[**WDM: 3D Wavelet Diffusion Models for High-Resolution Medical Image Synthesis**](https://pfriedri.github.io/wdm-3d-io)" by Paul Friedrich, Julia Wolleb, Florentin Bieder, Alicia Durrer and Philippe C. Cattin.
|
| 16 |
+
|
| 17 |
+
**WDM** is a wavelet-based medical image synthesis framework that can generate high-resolution medical images like CT or MR scans.
|
| 18 |
+
For more information on our method, we refer to our [**project page**](https://pfriedri.github.io/wdm-3d-io) or the [**paper**](https://arxiv.org/abs/2402.19043).
|
| 19 |
+
|
| 20 |
+
## Origial GitHub repository
|
| 21 |
+
If you want to use the pre-trained models provided in this repository, download the model weights and follow the instructions in the official [GitHub repository](https://github.com/pfriedri/wdm-3d).
|
| 22 |
+
|
| 23 |
+
## Pre-trained models
|
| 24 |
+
We will soon provide models for different datasets and different image resolutions (starting with BraTs and LIDC-IDRI at resolutions of 128³ and 256³).
|
| 25 |
+
|
| 26 |
+
## Hardware requirements
|
| 27 |
+
To sample images from the provided models, you require a GPU with at least:
|
| 28 |
+
- 3 GB VRAM - for 128 x 128 x 128 (model uses ~2.55 GB)
|
| 29 |
+
- 8 GB VRAM - for 256 x 256 x 256 (model uses ~7.27 GB)
|
| 30 |
+
|
| 31 |
+
The models were trained on a system with an an AMD Epyc 7742 CPU and a NVIDIA A100 (40GB) GPU.
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
If you find this work useful, please cite:
|
| 35 |
+
```bibtex
|
| 36 |
+
@article{friedrich2024wdm,
|
| 37 |
+
title={WDM: 3D Wavelet Diffusion Models for High-Resolution Medical Image Synthesis},
|
| 38 |
+
author={Paul Friedrich and Julia Wolleb and Florentin Bieder and Alicia Durrer and Philippe C. Cattin},
|
| 39 |
+
year={2024},
|
| 40 |
+
journal={arXiv preprint arXiv:2402.19043}}
|
| 41 |
+
```
|