Switch to unified view

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