Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rhenanbartels/lunge

Software for quantitative lung image analysis
https://github.com/rhenanbartels/lunge

Last synced: 15 days ago
JSON representation

Software for quantitative lung image analysis

Awesome Lists containing this project

README

        

# lunge
[![Gitter](https://badges.gitter.im/RhenanBartels/lunge.svg)](https://gitter.im/RhenanBartels/lunge?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

*Software for quantitative lung image analysis*

## Requirements
- MatlabTM 7.9.0.529 (R2009b)
- Image Processing Toolbox
- Signal Processing Toolbox

## Usage
Download the program clicking in the "Download Zip" button. Unzip the folder
and then execute the following steps in MatlabTM Command Window:

```matlab
>> cd /path/to/program/code/
>> lunge
```

## How to contribute
Download or fork the current repository, use your favourite text editor
and apply the following code convetion:

### Code convetions
- [camelCase](https://en.wikipedia.org/wiki/CamelCase)
- space between operators
- comments when necessary
- docstring in all created funtion

```matlab
%Estimates lung total volume.
volumeLunge = numberOfVoxels * voxelVolume;
```