Metadata-Version: 2.1
Name: bc-count
Version: 0.0.5
Summary: Count blood cells
Home-page: https://github.com/nemo256/bc-count
Author: nemo256 (Amine Neggazi)
Author-email: <neggazimedlamine@gmail.com>
Keywords: python,artificial intelligence,deep learning,blood cells,image segmentation,unet
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: testing
License-File: LICENSE
License-File: AUTHORS

# BC count
Count red, white blood cells to detect various diseases such as blood cancer (leukemia), lower red blood cells (anemia)...

<!-- TABLE OF CONTENTS -->
## Table of Contents

* [Project Structure](#project-structure)
* [Setup](#setup)
* [License](#license)

## Project Structure
```
bc-count/
|-- bc-count/
|   |-- test/
|   |   |-- __init__.py
|   |   |-- test_data.py
|   |   |-- test_main.py
|   |   |-- test_model.py
|   |   
|   |-- __init__.py
|   |-- data.py
|   |-- main.py
|   |-- model.py
|
|-- bin/
|   |-- bc-count
|
|-- docs/
|
|-- AUTHORS
|-- LICENSE
|-- README.md
|-- requirements.txt 
|-- setup.py
|-- TODO.md
```

## Setup

- Download the project:
```
$ git clone https://github.com/nemo256/bc-count
$ cd bc-count
```
- Activate virtual environment:
```
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
```
- Now just run the script:
```
$ python bc-count/main.py
```

## License
- Please read cell-count/LICENSE.
