File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,12 @@ cd py-ctcmetrics
52
52
pip install .
53
53
```
54
54
55
+ ** Note** : If you want to use the visualization feature, you need to install OpenCV or by installing the optional dependencies:
56
+ ``` bash
57
+ pip install py-ctcmetrics[viz]
58
+ ```
59
+
60
+
55
61
---
56
62
57
63
## Usage
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = "py-ctcmetrics" ,
5
- version = "1.1 .0" ,
5
+ version = "1.2 .0" ,
6
6
packages = find_packages (),
7
7
install_requires = [
8
8
"numpy" ,
9
- "opencv-python" ,
10
9
"scikit-learn" ,
11
10
"scipy" ,
12
11
"tifffile" ,
13
12
"imagecodecs" ,
14
13
"pandas"
15
14
],
15
+ extras_require = {
16
+ "viz" : ["opencv-python" ],
17
+ },
16
18
author = "Timo Kaiser" ,
17
19
author_email = "kaiser@tnt.uni-hannover.de" ,
18
20
description = "Metrics for Cell Tracking Challenges" ,
You can’t perform that action at this time.
0 commit comments