Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rhenanbartels/lunge
- Owner: rhenanbartels
- Created: 2016-02-29T23:07:46.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2016-04-11T19:01:03.000Z (over 8 years ago)
- Last Synced: 2023-10-20T22:49:11.522Z (about 1 year ago)
- Language: Matlab
- Size: 37.1 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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;
```