Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme update #117

Merged
merged 2 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,6 @@ bin/C2C spine -i <path/to/input/folder>
<img src="figures/spine_example.png" height="300">
</p>

## Slice-by-Slice 2D Analysis of Muscle and Adipose Tissue

### Usage
```bash
bin/C2C muscle_adipose_tissue -i <path/to/input/folder>
```
- DICOM files within the input_path folder and subfolders of input_path will be processed.

### Example Output Image
<p align="center">
<img src="figures/muscle_adipose_tissue_example.png" height="300">
</p>

## End-to-End Spine, Muscle, and Adipose Tissue Analysis at T12-L5

### Usage
Expand Down Expand Up @@ -182,6 +169,19 @@ bin/C2C all -i <path/to/input/folder>
```
- input_path should contain a DICOM series or subfolders that contain DICOM series.

## Slice-by-Slice 2D Analysis of Muscle and Adipose Tissue [Depricated]

### Usage
```bash
bin/C2C muscle_adipose_tissue -i <path/to/input/folder>
```
- DICOM files within the input_path folder and subfolders of input_path will be processed.

### Example Output Image
<p align="center">
<img src="figures/muscle_adipose_tissue_example.png" height="300">
</p>

## Contribute
<a name="contribute"></a>
If you would like to contribute to Comp2Comp, we recommend you clone the repository and install Comp2Comp with `pip` in editable mode.
Expand Down
1 change: 0 additions & 1 deletion comp2comp/io/io_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import os



def find_dicom_files(input_path):
dicom_series = []
if not os.path.isdir(input_path):
Expand Down