-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME.md.backup
More file actions
55 lines (34 loc) · 2.36 KB
/
README.md.backup
File metadata and controls
55 lines (34 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[](https://github.com/MultimodalImagingCenter/MiC/actions/workflows/build.yml)
# Mask instant Comparator (MiC) <img src="ressources/logoMiC.png" width="100" >
## About
MiC is an ImageJ plugin to compare segmentation masks.
- It computes the number of **true positive (TP)**, **false positives (FP)** and **false negatives (FN)**
+ at pixel level
+ at object level with an overlap (or intersection over union - IoU) of 0.5
+ possibility of varying IoU
- It computes metrics
+ **Precision** defined as $\frac{TP}{TP + FP}$
+ **Recall** (or sensitivity) defined as $\frac{TP}{TP + FN}$
+ **Jaccard index** (or global perecision) defined as $\frac{TP}{TP + FP + FN}$
+ **F1-measure** (or Sorensen Dice Coefficient - DSC) defined as $\frac{2TP}{2TP + FP + FN}$
- It displays the **superposition of the two masks** with the ground truth in green and the mask to evaluate in red for pixel level, for Object level the truth is in green, the mask to evaluate in red, TP are thus yellow, FP blue, FN dark green.
- It displays the **plots** corresponding to metrics as function of IoU
- All computed values are stored in **result tables** that can be exported in excel or csv format
- possibility to work on **stacks**. It works only in **2D** for now, each slice will be compared to corresponding slice. If varying IoU, an additional plot is displayed with metrics corresponding to the sum of TPs, FNs and FPs on all images.
- the plugin is **macro recordable**
## Install
download the jar file and copy into plugin Folder of ImageJ
or use the updater in Fiji:
menu >Help>Update...
click the button "Manage update sites"
select MiC mask comparator
if it is not available directly you can add it (button add update site) with the folowing URL https://sites.imagej.net/MiC-mask-comparator/
## Usage
run >Plugin>MiC>Mask instant Comparator
or
run >Plugin>MiC>Mask instant Comparator3D


please look at the [wiki](https://github.com/MultimodalImagingCenter/MiC/wiki) for more information on each plugin.
## Licensing
MiC plugin is licensed under the MIT License