An open API service indexing awesome lists of open source software.

https://github.com/anras5/tomograf

Application that simulates a CT scanner
https://github.com/anras5/tomograf

flask image-processing medical python

Last synced: about 1 month ago
JSON representation

Application that simulates a CT scanner

Awesome Lists containing this project

README

          

# TOMOGRAF

## How to run
The app will run on `localhost:5000`

### Docker

#### docker
```commandline
docker build -t tomograf .
docker run -p 5000:5000 tomograf
```

#### docker compose
```commandline
docker compose up --build
```

### Locally

Windows 10:
```commandline
python -m venv venv
venv/Scripts/activate.ps1
pip install -r requirements.txt
flask --app flaskr run --host="0.0.0.0"
```

Linux:
```commandline
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
flask --app flaskr run --host="0.0.0.0"
```

## How does the app look like

### Home page
![home](screenshots/home.png)
![home2](screenshots/home_expand.png)

### Results page
![results](screenshots/results.png)