a b/README.md
1
# The production version is at [nemo256/cbc](https://github.com/nemo256/cbc)
2
# Blood Cells Count
3
Count red, white blood cells to detect various diseases such as blood cancer (leukemia), lower red blood cells count (anemia)...
4
5
![Sample](sample.png)
6
7
<!-- TABLE OF CONTENTS -->
8
## Table of Contents
9
10
* [Project Structure](#project-structure)
11
* [Develop](#develop)
12
* [License](#license)
13
14
## Project Structure
15
```
16
bc-count/
17
|-- bc-count/
18
|   |-- config.py
19
|   |-- data.py
20
|   |-- main.py
21
|   |-- model.py
22
|
23
|-- bin/
24
|   |-- bc-count
25
|
26
|-- docs/
27
|
28
|-- data/
29
|   |-- plt/
30
|   |-- rbc/
31
|   |-- wbc/
32
|
33
|-- models/
34
35
|-- output/
36
|   |-- plt/
37
|   |-- rbc/
38
|   |-- wbc/
39
|
40
|-- AUTHORS
41
|-- LICENSE
42
|-- README.md
43
|-- TODO.md
44
|-- requirements.txt 
45
|-- setup.py
46
```
47
48
## Develop
49
- Download the project:
50
```
51
$ git clone https://github.com/nemo256/bc-count
52
$ cd bc-count
53
```
54
- Activate virtual environment:
55
```
56
$ python -m venv venv
57
$ source venv/bin/activate
58
$ pip install -r requirements.txt
59
```
60
- Now just adapt the code to your need and then run using the command:
61
```
62
$ python bc-count/main.py
63
```
64
65
## License
66
- Please read [bc-count/LICENSE](https://github.com/nemo256/bc-count/blob/master/LICENSE)