Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KedoKudo authored Aug 13, 2021
1 parent 6cb23c8 commit 4daa5d0
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,46 @@
# MCPEventModeImageReconstruction

This repository contains Python based image reconstruction software that can reduce the raw data collected by multi-channel plate detector under event mode into standard radiograph.

# How to use

The easiest way to use it to start reducing the data is by cloning this repository into your data reduction env with:

```
git clone https://github.com/KedoKudo/MCPEventModeImageReconstruction
```

create a virtual environment if possible, then install the dependencies with

```
pip install -r requirement.txt
```

followed by an local install with

```
pip install -e .
```

Now you can directly call the script to start the reduction

```
mcp3_reducer RAW_MCP_DATA.h5
```

For additional control options, use

```
mcp3_reducer -h
```

# How to contribute

If you would like to contribute, please fork this repo to your own account.
Install the dev environment dependencies with

```
pip install -r requirement_dev.txt
```

Once you finished implementing the new features or bug fixes, you can submit a pull request and the maintainer will review and merge it once it is ready.

0 comments on commit 4daa5d0

Please sign in to comment.