Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lightbridge-ks/designcter
App for generate design of CT Protocols at ER in my institution
https://github.com/lightbridge-ks/designcter
desktop-app flet-app protocols python radiology
Last synced: 3 months ago
JSON representation
App for generate design of CT Protocols at ER in my institution
- Host: GitHub
- URL: https://github.com/lightbridge-ks/designcter
- Owner: Lightbridge-KS
- Created: 2024-05-23T18:13:12.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T16:00:36.000Z (5 months ago)
- Last Synced: 2024-08-03T17:14:38.739Z (5 months ago)
- Topics: desktop-app, flet-app, protocols, python, radiology
- Language: Python
- Homepage: https://design-cter-userguide.netlify.app
- Size: 12 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> **Cross-platform application for design CT protocol in emergency department for my institution.**
---
**Build using [Flet](https://flet.dev/)**, a cross-platform UI framework in Python.
[![Build status](https://ci.appveyor.com/api/projects/status/crptct3i8mpiw516?svg=true)](https://ci.appveyor.com/project/Lightbridge-KS/designcter) [![Netlify Status](https://api.netlify.com/api/v1/badges/1ca89925-4b24-4cca-a13f-a1a15718c947/deploy-status)](https://app.netlify.com/sites/design-cter/deploys)
- **Web app:**
- **Desktop app:** see [release](https://github.com/Lightbridge-KS/designCTER/releases)
- **User Guide:**
---
## Mode
### Tab 1: Design CT Protocol
Light | Dark
:-------------------------:|:-------------------------:
![](./img/screen-light-1.png) | ![](./img/screen-dark-1.png)This mode will generate CT protocols available from 3 levels dropdown: "category", "exam", and "protocol". Other information can be filled in the input text field. Once finished, user can press **Generate**, then the protocol will render accordingly in the output text field.
### Tab 2: Calculator
Light | Dark
:-------------------------:|:-------------------------:
![](./img/screen-light-2.png) | ![](./img/screen-dark-2.png)This helper mode can be use as a calculator for writing radiology report which includes build-in calculator for common task, such as mean calculator (for calculate dose), prostate volume, and spine height loss.
**Mean calculator:**
![Mean Calculator](./img/mean-calc.png)
- Calculate mean value from input numbers (separated by blank space or comma)
**Prostate volume:**
![Prostate volume](./img/prostate-vol.png)
- **Input:** Perpendicular diameter (cm) of prostate in 3 planes
- **Output:** A report for prostate volume with severity (normal, prominent, or enlarged size), using ellipsoid formula.**Spine Height Loss:**
![Spine height loss](./img/spine-ht-loss.png)
- **Input:** Normal and collapsed height of spine. If there is no normal reference of the spine (e.g. severe collapse), the height of the two adjacent vertebrae can be used by input two numbers in the "Collapsed height (cm)" textbox (separated by blank space or comma).
- **Output:** A report for percentage of vertebral compression fracture with grading (mild, moderate, severe) using [Genant's classification](https://radiopaedia.org/articles/44227).## Build from Source
### Installation
1. Install [flet](https://flet.dev/docs/guides/python/getting-started) and [pyperclip](https://pypi.org/project/pyperclip/) with:
```shell
pip install -r requirements.txt
```2. [Install Flutter](https://docs.flutter.dev/get-started/install)
### Build app
```shell
cd to/directory/root
# Build
flet build
````` could be one of the following: `apk`, `aab`, `ipa`, `web`, `macos`, `windows`, `linux`.